udi-yac 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +373 -0
- package/dist/app/ErrorBoundary.d.ts +18 -0
- package/dist/app/UDIChat.d.ts +3 -0
- package/dist/app/UDIChatConfig.d.ts +23 -0
- package/dist/app/UDIChatContext.d.ts +26 -0
- package/dist/app/validateConfig.d.ts +14 -0
- package/dist/app/validateConfig.test.d.ts +1 -0
- package/dist/assets/domainWorker-Cd9KoNXV.js +16 -0
- package/dist/ce-entry-C4ngOj0B.js +42577 -0
- package/dist/components/ui/badge.d.ts +7 -0
- package/dist/components/ui/button.d.ts +8 -0
- package/dist/components/ui/card.d.ts +11 -0
- package/dist/components/ui/checkbox.d.ts +3 -0
- package/dist/components/ui/dialog.d.ts +17 -0
- package/dist/components/ui/dropdown-menu.d.ts +29 -0
- package/dist/components/ui/input.d.ts +3 -0
- package/dist/components/ui/label.d.ts +3 -0
- package/dist/components/ui/scroll-area.d.ts +4 -0
- package/dist/components/ui/select.d.ts +15 -0
- package/dist/components/ui/separator.d.ts +3 -0
- package/dist/components/ui/slider.d.ts +3 -0
- package/dist/components/ui/switch.d.ts +5 -0
- package/dist/components/ui/tabs.d.ts +10 -0
- package/dist/components/ui/textarea.d.ts +3 -0
- package/dist/components/ui/tooltip.d.ts +6 -0
- package/dist/data/hubmap_2025-05-05/datapackage_udi.json +19606 -0
- package/dist/data/hubmap_2025-05-05/datasets.csv +6324 -0
- package/dist/data/hubmap_2025-05-05/datasets.tsv +6324 -0
- package/dist/data/hubmap_2025-05-05/donors.csv +433 -0
- package/dist/data/hubmap_2025-05-05/donors.tsv +433 -0
- package/dist/data/hubmap_2025-05-05/samples.csv +4490 -0
- package/dist/data/hubmap_2025-05-05/samples.tsv +4490 -0
- package/dist/data/hubmap_api/datapackage.json +14110 -0
- package/dist/data/readme.md +41 -0
- package/dist/favicon.svg +1 -0
- package/dist/features/chat/api/completions.d.ts +12 -0
- package/dist/features/chat/components/ApiKeyInput.d.ts +5 -0
- package/dist/features/chat/components/ChatHeaderBar.d.ts +19 -0
- package/dist/features/chat/components/ChatInput.d.ts +7 -0
- package/dist/features/chat/components/ChatPanel.d.ts +13 -0
- package/dist/features/chat/components/ClosedVisualizationsPanel.d.ts +6 -0
- package/dist/features/chat/components/ConversationList.d.ts +1 -0
- package/dist/features/chat/components/DebugToggleSection.d.ts +13 -0
- package/dist/features/chat/components/MessageBubble.d.ts +8 -0
- package/dist/features/chat/components/MessageList.d.ts +7 -0
- package/dist/features/chat/hooks/useChatApi.d.ts +6 -0
- package/dist/features/chat/hooks/useDebugExports.d.ts +11 -0
- package/dist/features/chat/hooks/useExamplePrompts.d.ts +7 -0
- package/dist/features/chat/hooks/useResetHandlers.d.ts +8 -0
- package/dist/features/chat/index.d.ts +9 -0
- package/dist/features/chat/stores/conversationStore.d.ts +10 -0
- package/dist/features/chat/stores/conversationStore.test.d.ts +1 -0
- package/dist/features/dashboard/components/DashboardCard.d.ts +9 -0
- package/dist/features/dashboard/components/DashboardPanel.d.ts +1 -0
- package/dist/features/dashboard/components/DataCounts.d.ts +1 -0
- package/dist/features/dashboard/components/DownloadButton.d.ts +1 -0
- package/dist/features/dashboard/components/FilterToolbar.d.ts +1 -0
- package/dist/features/dashboard/components/VizTweakComponent.d.ts +8 -0
- package/dist/features/dashboard/components/VizTweakComponent.types.d.ts +20 -0
- package/dist/features/dashboard/components/WelcomeSplash.d.ts +1 -0
- package/dist/features/dashboard/index.d.ts +10 -0
- package/dist/features/dashboard/stores/dashboardStore.d.ts +70 -0
- package/dist/features/dashboard/stores/dashboardStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/dataFiltersStore.d.ts +34 -0
- package/dist/features/dashboard/stores/dataFiltersStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/memoryBankStore.d.ts +8 -0
- package/dist/features/dashboard/stores/memoryBankStore.test.d.ts +1 -0
- package/dist/features/dashboard/stores/selectionsStore.d.ts +7 -0
- package/dist/features/dashboard/stores/selectionsStore.test.d.ts +1 -0
- package/dist/features/data-package/index.d.ts +7 -0
- package/dist/features/data-package/stores/dataPackageStore.d.ts +25 -0
- package/dist/features/data-package/stores/dataPackageStore.test.d.ts +1 -0
- package/dist/features/data-package/types.d.ts +27 -0
- package/dist/features/data-package/utils/joinDataPath.d.ts +7 -0
- package/dist/features/data-package/utils/joinDataPath.test.d.ts +1 -0
- package/dist/features/data-package/utils/structuredTextParser.d.ts +7 -0
- package/dist/features/data-package/utils/structuredTextParser.test.d.ts +1 -0
- package/dist/features/data-package/workers/domainWorker.d.ts +13 -0
- package/dist/features/tool-calls/components/ClarifyVariable.d.ts +6 -0
- package/dist/features/tool-calls/components/FilterComponent.d.ts +9 -0
- package/dist/features/tool-calls/components/FreeTextExplain.d.ts +2 -0
- package/dist/features/tool-calls/components/IntervalFilterComponent.d.ts +9 -0
- package/dist/features/tool-calls/components/PointFilterComponent.d.ts +8 -0
- package/dist/features/tool-calls/components/RebuffNotice.d.ts +7 -0
- package/dist/features/tool-calls/components/ToolCallRenderer.d.ts +11 -0
- package/dist/features/tool-calls/components/VisualizationCard.d.ts +10 -0
- package/dist/features/tool-calls/index.d.ts +6 -0
- package/dist/features/tool-calls/types.d.ts +52 -0
- package/dist/icons.svg +24 -0
- package/dist/images/yac-mascot.svg +22 -0
- package/dist/index.d.ts +5 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/stores/globalStore.d.ts +6 -0
- package/dist/stores/globalStore.test.d.ts +1 -0
- package/dist/test/setup.d.ts +0 -0
- package/dist/types/dataPackage.d.ts +64 -0
- package/dist/types/messages.d.ts +24 -0
- package/dist/udi-yac.css +3 -0
- package/dist/udi-yac.js +25877 -0
- package/dist/utils/specMutations.d.ts +45 -0
- package/dist/utils/specMutations.test.d.ts +1 -0
- package/package.json +110 -0
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
uuid hubmap_id abo_blood_group_system age_unit age_value apolipoprotein_e_phenotype body_mass_index_unit body_mass_index_value cause_of_death created_by_user_displayname created_by_user_email created_timestamp death_event egfr_ckd_epi_2021__unit egfr_ckd_epi_2021__value ethnicity fitzpatrick_classification_scale gestational_age_unit gestational_age_value group_name height_unit height_value kidney_donor_profile_index_unit kidney_donor_profile_index_value last_modified_timestamp mapped_consortium mapped_statusdata_access_level mechanism_of_injury medical_history other_anatomic_concept pathology_note published_timestamp race rh_blood_group serum_creatinine_unit serum_creatinine_value sex social_history status weight_unit weight_value
|
|
2
|
+
a9175b3b41ef3cb88afa0cb1fff0f4e7 HBM876.BRLJ.659 Blood Type A years 62.0 kg/m2 20.9 Cerebrovascular accident Yiing Lin liny@wustl.edu 1576875422805 Natural causes Stanford TMC cm 160.0 % 90.0 1746721998032 HuBMAP Intracranial hemorrhage Hypertension White Female kg 53.5
|
|
3
|
+
7dee9126a98c1e0d2445c0aecb3566ad HBM994.TNMH.444 Blood Type A1 years 20.0 kg/m2 23.84 Head trauma Marda Jorgensen marda@ufl.edu 1634134937171 Suicide University of Florida TMC cm 170.0 % 15.0 1746731946326 HuBMAP Gunshot wound White Male Smoker, Alcohol use, Marijuana use kg 68.9
|
|
4
|
+
2dbd1449b42ce7f5c96db959db44b6dc HBM546.HQGH.786 Blood Type O years 32.0 kg/m2 30.2 Anoxia Marda Jorgensen marda@ufl.edu 1603123065297 Natural causes University of Florida TMC cm 180.0 % 34.0 1746714991185 HuBMAP Cardiac Arrest, Hypertension, Heart failure with reduced ejection fraction White Male kg 97.0
|
|
5
|
+
edfb624cb6413783023c52bc40cccb00 HBM357.GMBX.758 years 57.0 kg/m2 25.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1626981770728 Vanderbilt TMC 1746706208489 HuBMAP White Male
|
|
6
|
+
1628b6f7eb615862322d6274a6bc9fa0 HBM279.WPZP.978 Blood Type O years 67.0 kg/m2 30.2 Anoxia Yiing Lin liny@wustl.edu 1572558878956 Natural causes Stanford TMC cm 170.2 % 98.0 1746705294583 HuBMAP Asphyxiation Hypertension, Coronary Artery Disease, Cardiac Arrest White Female kg 87.6
|
|
7
|
+
07bf8cd878cb1cb3883c43c28acba466 HBM826.RSPW.849 Blood Type O years 49.0 kg/m2 46.2 Anoxia Yiing Lin liny@wustl.edu 1612991206554 Natural causes California Institute of Technology TMC cm 162.6 % 77.0 1746720046644 HuBMAP Cardiac Arrest, Hypertension, Coronary Artery Disease, Type 2 Diabetes Mellitus White Female Smoker kg 122.0
|
|
8
|
+
a32f9fb2a344f2d1ad7c526aa362713c HBM637.QBTV.856 Blood Type O years 16.0 kg/m2 24.57 Head trauma Marda Jorgensen marda@ufl.edu 1613755826868 Suicide University of Florida TMC cm 170.0 % 4.0 1746716924505 HuBMAP Gunshot wound Depression White Male kg 71.0
|
|
9
|
+
9d25f15d3236251bc5adb07fe3c93872 HBM427.KCLS.937 Blood Type A years 53.0 kg/m2 26.4 Head trauma Yiing Lin liny@wustl.edu 1612991490737 Suicide California Institute of Technology TMC cm 182.9 % 65.0 1746707625631 HuBMAP Gunshot wound Hypertension White Male Smoker, Heavy drinker kg 88.2
|
|
10
|
+
a6861cae936bb27e472ee11acb679700 HBM727.LTFN.536 years 30.0 Po Hu hup2@chop.edu 1633365873361 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274344708 HuBMAP White Female
|
|
11
|
+
b951738288fa04956249416a88c8fbef HBM579.CTRK.363 years 18.0 kg/m2 24.5 Amanda Knoten aknoten@wustl.edu 1639594029074 University of California San Diego TMC 1746715585792 HuBMAP White Male
|
|
12
|
+
01d8b1a59c0326441167d8375c4437ec HBM867.BLQJ.787 years 54.0 kg/m2 53.06 Anoxia Amanda Knoten aknoten@wustl.edu 1638307069935 University of California San Diego TMC cm 157.48 1746721733121 HuBMAP Type 2 Diabetes Mellitus, Hypertension, Asthma, Chronic Obstructive Lung Disease, Obstructive sleep apnea Black or African American Female Smoker, Illicit drug use kg 131.6
|
|
13
|
+
a276b9cd65d962676cdf691011ca8f78 HBM374.RNXZ.674 months 18.0 Amanda Knoten aknoten@wustl.edu 1652112769777 University of California San Diego TMC 1744640897125 HuBMAP White Female
|
|
14
|
+
3ac683032d95311f68b4af38c240a9bc HBM993.XNPC.882 years 24.0 kg/m2 36.9 Traumatic injury Merissa Olmer molmer@scripps.edu 1652213953350 Hispanic or Latino TMC - University of Connecticut cm 175.26 1746724370208 HuBMAP Unknown Male kg 113.64
|
|
15
|
+
e59a4ecb40cf4131012cbbc87c548cac HBM626.JCQZ.225 Blood Type A1 years 25.0 kg/m2 28.47 Head trauma Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1653243099922 University of California San Diego TMC cm 177.8 1746716486812 HuBMAP Motor vehicle accident White Male kg 90.0
|
|
16
|
+
05e756d2a9efc484e8a16238114b97ea HBM489.SLZP.863 years 50.0 kg/m2 25.0 Amanda Knoten aknoten@wustl.edu 1652387993074 University of California San Diego TMC 1746714492202 HuBMAP White Female
|
|
17
|
+
2c8427a6d56b87975279c83b10a08193 HBM667.CTLB.899 years 28.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099258456 General Electric RTI cm 180.34 1770387426838 HuBMAP Sun-exposed Site Black or African American Male kg 84.09
|
|
18
|
+
2315a26db2862f61ec689bd8cf368944 HBM223.HSGQ.886 years 27.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099265154 General Electric RTI cm 162.56 1770387513936 HuBMAP Black or African American Female kg 81.82
|
|
19
|
+
9d0274af06926c405696a533c2fbaeb9 HBM848.BMDK.429 Blood Type A1 years 49.0 kg/m2 22.42 Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1653275796708 Natural causes University of California San Diego TMC cm 167.64 1746720585696 HuBMAP Brain cancer Asian Female kg 63.0
|
|
20
|
+
03b82562be364ef03017f7861e60d723 HBM232.QQVP.428 years 11.0 Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1718644577146 University of Rochester Medical Center TMC 1744416141259 HuBMAP Tonsillitis Black or African American Male
|
|
21
|
+
2c95c232f6b6cb7711ec58e888a6306e HBM349.NTXG.282 years 18.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269638252 Vanderbilt TMC 1744403492803 HuBMAP Black or African American Male
|
|
22
|
+
7b9ee7180f3d5fdbc2634c7c9c7856de HBM329.NTRL.595 years 20.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269880634 Vanderbilt TMC 1744403548929 HuBMAP White Male
|
|
23
|
+
3d94cc94a8c377f700f3e050f9ce11e1 HBM647.BJWM.855 Blood Type A years 36.0 kg/m2 31.6 Valentina Stanley vstanley@ucsd.edu 1693235657446 Not Hispanic or Latino weeks 38.6 TMC - University of California San Diego focusing on female reproduction cm 167.64 1746725079321 HuBMAP Salpingectomy, Cesarian section White Rh positive Female Non-smoker kg 89.09
|
|
24
|
+
26d0891bcb4f8161d637f06f7e24f567 HBM582.PMVH.879 Blood Type A years 41.0 kg/m2 28.0 Valentina Stanley vstanley@ucsd.edu 1693235658698 Not Hispanic or Latino weeks 39.0 TMC - University of California San Diego focusing on female reproduction cm 170.18 1746715633879 HuBMAP Gestational diabetes mellitus class A1, Salpingectomy, Cesarian section White Rh positive Female Non-smoker kg 81.36
|
|
25
|
+
45ead31cf80cc9bff719948042198e26 HBM963.LXWM.598 years 63.0 Haitham Mohamed Abdelazim haitham.mohameda@ufl.edu 1698763438304 mL/min/1.73m2 134.18 TC - University of Florida 1744643538457 HuBMAP White mg/dL 0.72 Male
|
|
26
|
+
c07204ff70bb39391d3a15364a72ee77 HBM593.NGPZ.869 years 71.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115416634 TTD - University of San Diego and City of Hope 1744644003241 HuBMAP Pathology note White Male
|
|
27
|
+
ef8f5f68d346bad2b1f46c1eea87d52c HBM322.GKMM.428 years 56.0 Ting Peng pengt1@chop.edu 1735673157166 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274054783 HuBMAP White Male
|
|
28
|
+
399958c160fd11c0def69198c8af1f29 HBM478.HDLP.354 years 42.0 Ting Peng pengt1@chop.edu 1735673222874 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273840792 HuBMAP White Female
|
|
29
|
+
7dc7abe265626c8e892dd094a2c1215a HBM267.XJXC.286 years 64.0 Ting Peng pengt1@chop.edu 1747155875228 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274172181 HuBMAP White Male
|
|
30
|
+
75eacfeca40e9d675e9b5eb120977257 HBM558.TBXW.289 years 0.0 Alex Kong alkong@stanford.edu 1742239077286 Stanford University Bone Marrow TMC 1765551236056 HuBMAP Unknown Unknown
|
|
31
|
+
78e7a475e366853caa1d5c9edb3a0fb4 HBM883.ZTKR.774 years 40.0 Alex Kong alkong@stanford.edu 1742257566772 Stanford University Bone Marrow TMC 1746027519843 HuBMAP Unknown Female
|
|
32
|
+
ce1cbaffd02292906b2948e83173aec2 HBM566.XMPT.923 years 36.0 Alex Kong alkong@stanford.edu 1742256753717 Stanford University Bone Marrow TMC 1746027310520 HuBMAP Unknown Female
|
|
33
|
+
cc69a585ae4d83b8adc7f7f77a37efb4 HBM829.PQPP.485 years 61.0 Ting Peng pengt1@chop.edu 1749499547978 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273894345 HuBMAP White Female
|
|
34
|
+
9d9330fbf8f457b0aeef774458931921 HBM474.NRNL.625 years 48.0 Ting Peng pengt1@chop.edu 1749500172325 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274081490 HuBMAP Black or African American Male
|
|
35
|
+
d5d47e3cd48e28a932ea33d58f6feb00 HBM796.VGTX.823 years 14.0 kg/m2 18.5 Diane Salamon salamond@wustl.edu 1577729922378 University of California San Diego TMC cm 162.6 1746719753565 HuBMAP White Female kg 49.0
|
|
36
|
+
a38b15989cc8d7cec59354b69a65d92b HBM477.DBJN.952 years 54.0 kg/m2 30.2 Diane Salamon salamond@wustl.edu 1577729088557 University of California San Diego TMC cm 193.0 1746713673190 HuBMAP Hypertension White Male kg 112.7
|
|
37
|
+
866a78fd1ac8d4db740ebbb49a205b8d HBM455.HLHM.985 years 61.0 Jamie Allen allenj2@vanderbilt.edu 1575489460844 Vanderbilt TMC 1744396755226 HuBMAP White Female
|
|
38
|
+
ae36b667325281a00d66eed4c43c585f HBM429.BVWN.357 years 62.0 kg/m2 34.9 Jamie Allen allenj2@vanderbilt.edu 1580318902978 Vanderbilt TMC cm 182.9 1746712908636 HuBMAP Cancer White Male kg 116.9
|
|
39
|
+
95a493ab959cc164a14d47fc61474d18 HBM935.PVKV.959 years 55.0 kg/m2 30.0 Jamie Allen allenj2@vanderbilt.edu 1577421894982 Vanderbilt TMC cm 181.6 1745943571242 HuBMAP Cancer White Male kg 98.9
|
|
40
|
+
c3cd699d78e8e52869656640dae5964a HBM859.HGSB.847 years 72.0 kg/m2 35.5 Jamie Allen jamie.l.allen@vanderbilt.edu 1629486775751 Vanderbilt TMC cm 175.2 1746610840173 HuBMAP White Male kg 109.1
|
|
41
|
+
cf9b874d0c6563cb00122a40ca65e089 HBM957.WLTT.733 years 64.0 kg/m2 33.1 Jamie Allen jamie.l.allen@vanderbilt.edu 1630680853149 Vanderbilt TMC cm 162.6 1746611512862 HuBMAP White Male kg 87.5
|
|
42
|
+
08b47d4a2c756edeade7b5eb25c0b7c9 HBM699.QFRG.965 years 53.0 kg/m2 23.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1689185704223 Vanderbilt TMC cm 193.0 1771527458482 HuBMAP Renal cell carcinoma, Gastroesophageal reflux disease White Male kg 85.7
|
|
43
|
+
7579e5b974d14149e6fa633d5598f9a8 HBM472.PHMC.793 years 72.0 kg/m2 31.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1630335712526 Vanderbilt TMC cm 167.6 1771527419694 HuBMAP White Male kg 88.9
|
|
44
|
+
3432d3713adbbb51f52973d137a0d7ed HBM226.XVDP.877 years 66.0 kg/m2 31.4 Jamie Allen jamie.l.allen@vanderbilt.edu 1601493406258 Vanderbilt TMC cm 175.3 1746656758907 HuBMAP Hypertension, Coronary Artery Disease, Cancer White Male kg 96.6
|
|
45
|
+
a5344853b375669156064c8c88722a62 HBM655.QXWT.955 years 78.0 kg/m2 27.5 Jamie Allen jamie.l.allen@vanderbilt.edu 1689623631863 Vanderbilt TMC cm 170.2 1771527538657 HuBMAP Renal cell carcinoma, Prostate cancer, Multiple nodules of lung, Colonic polyps, Centriacinar emphysema White Male kg 79.8
|
|
46
|
+
171fc88db789ff330b0d7a420b642a23 HBM633.KPHW.963 years 77.0 kg/m2 28.2 Jamie Allen jamie.l.allen@vanderbilt.edu 1601492892218 Vanderbilt TMC cm 162.6 1746716575341 HuBMAP Hypertension, Coronary Artery Disease, Cancer, Type 2 Diabetes Mellitus White Female kg 74.6
|
|
47
|
+
12327363809f68135c9b14e74ac74124 HBM285.XQXL.628 years 66.0 kg/m2 23.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1627413089335 Vanderbilt TMC 1746731760571 HuBMAP White Male
|
|
48
|
+
8791c166b90f77a078101f90ed4aeaa2 HBM675.JLVT.896 years 65.0 kg/m2 35.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1627068318996 Vanderbilt TMC 1746717958988 HuBMAP White Male
|
|
49
|
+
29acab642ac8c208b8b08ccc2b5f78db HBM558.NQFP.597 years 20.0 kg/m2 22.8 Jamie Allen jamie.l.allen@vanderbilt.edu 1628715843508 Vanderbilt TMC cm 172.7 1746610531340 HuBMAP White Female kg 68.0
|
|
50
|
+
1dcde05aea3509b2cf89a41ceb3d700f HBM245.VFCF.396 years 54.0 kg/m2 44.5 Jamie Allen jamie.l.allen@vanderbilt.edu 1628106680816 Vanderbilt TMC 1746700351724 HuBMAP White Female
|
|
51
|
+
3d2ac53b78caff917053f41e6ab24b0d HBM485.TKLN.947 years 49.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714441317960 Vanderbilt TMC 1775584754278 HuBMAP White Male
|
|
52
|
+
b98182cf9a3eb04ffdce04d5a8b4f13d HBM659.DMLP.268 years 65.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714446159746 Vanderbilt TMC 1775584838603 HuBMAP Black or African American Female
|
|
53
|
+
8c3a4460e5da93daa87f5f834cafcb43 HBM278.PFLB.646 Blood Type O years 34.0 Anoxia STEPHEN FISHER safisher@sas.upenn.edu 1690981781428 Natural causes TMC - University of Pennsylvania cm 163.83 1744643316151 HuBMAP Cardiovascular Hypertension, Hyperlipidimia White Rh positive Female Smoker, Alcohol use
|
|
54
|
+
947630d488bcd64620176753d94a2333 HBM437.HTCQ.742 Blood Type O years 17.0 kg/m2 18.0 Asphyxiation Marda Jorgensen marda@ufl.edu 1634134862000 Suicide University of Florida TMC cm 177.8 1746712973786 HuBMAP Hanging Tourette's Syndrome Unknown Rh negative Male Marijuana use kg 55.0
|
|
55
|
+
52ea1e3db509abf148a990ca8ecc0972 HBM288.KLMH.285 years 19.8 kg/m2 21.6 Adam Kagel ackagel@stanford.edu 1620779072271 Not Hispanic or Latino Stanford RTI 1746705328625 HuBMAP White Female
|
|
56
|
+
0a6b7ef7a5e26475505e8f8564aa15c2 HBM978.PZJF.734 years 24.5 kg/m2 22.0 Adam Kagel ackagel@stanford.edu 1620778717249 Stanford RTI 1746724013539 HuBMAP Asian Female
|
|
57
|
+
7cebe0e2a09d0aa1ed1724f89c961a8e HBM792.WPVP.788 years 54.0 Kyung Ahn AHN@chop.edu 1718045615000 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288087658 HuBMAP Black or African American Male
|
|
58
|
+
c171cd9c7a448acce0b8f43658c3a39a HBM229.TDDH.473 years 26.2 kg/m2 27.0 Adam Kagel ackagel@stanford.edu 1620778893862 Not Hispanic or Latino Stanford RTI 1746656935837 HuBMAP Black or African American Female Smoker, Marijuana use
|
|
59
|
+
d47e9f23f69c6483eebf35522d8ad15e HBM886.XNVB.695 years 21.3 kg/m2 23.1 Adam Kagel ackagel@stanford.edu 1620778933497 Hispanic or Latino Stanford RTI 1746722406151 HuBMAP Unknown Female
|
|
60
|
+
54e9f1a94821a716e8e1546aee7b0f7a HBM578.DXWB.873 Blood Type O years 24.0 kg/m2 22.9 Traumatic injury Daniel Cotter Daniel.cotter@stanford.edu 1649351770534 Stanford TMC cm 182.9 1746715564343 HuBMAP Traumatic injury White Male kg 76.6
|
|
61
|
+
3807eb744d0a4f035541b5d72a7d89bf HBM229.DMTB.262 years 25.1 kg/m2 23.7 Adam Kagel ackagel@stanford.edu 1620778642024 Not Hispanic or Latino Stanford RTI 1746656807500 HuBMAP Black or African American Female Smoker
|
|
62
|
+
8210ae0e0c6c0ffc6c0c8de392ba788a HBM729.FZVN.828 years 23.4 kg/m2 39.5 Adam Kagel ackagel@stanford.edu 1620778919676 Stanford RTI 1746718668347 HuBMAP Unknown Female
|
|
63
|
+
acaf06701dce3af4df02c5f2f68096f6 HBM598.TKRG.832 years 35.9 kg/m2 19.0 Adam Kagel ackagel@stanford.edu 1620778731165 Stanford RTI 1746715842762 HuBMAP Asian Female
|
|
64
|
+
332a4331efa6b01784d6044f62bbc1a4 HBM579.CXHK.929 years 42.0 kg/m2 20.2 Liz McDonough elizabeth.mcdonough@ge.com 1607627022962 General Electric RTI 1746715607648 HuBMAP Sun-exposed Site White Female
|
|
65
|
+
81f55c02788008c4791a686a33b7cb31 HBM238.KSKV.238 years 39.3 kg/m2 29.1 Adam Kagel ackagel@stanford.edu 1620778619802 Hispanic or Latino Stanford RTI 1746657280790 HuBMAP Unknown Female
|
|
66
|
+
cb518ddfe258bfd62bdd50e121a1f79f HBM872.NDPT.277 years 33.0 kg/m2 24.0 Adam Kagel ackagel@stanford.edu 1620778870266 Not Hispanic or Latino Stanford RTI 1746721923002 HuBMAP Hypertension Black or African American Female
|
|
67
|
+
d896b5e7296c6967eaa70a28c01f7c73 HBM357.RQMM.762 years 21.5 kg/m2 29.8 Adam Kagel ackagel@stanford.edu 1620779036636 Hispanic or Latino Stanford RTI 1746725007124 HuBMAP Type 2 Diabetes Mellitus Unknown Female Smoker
|
|
68
|
+
0f8fc4f0377495fa40a5e030e2cc6445 HBM249.BLSK.288 years 29.1 kg/m2 24.0 Adam Kagel ackagel@stanford.edu 1620779019540 Not Hispanic or Latino Stanford RTI 1746703720127 HuBMAP White Female Smoker
|
|
69
|
+
f7df19a5b8190b7e85b32ca15c3ac348 HBM463.NNRN.992 years 74.0 Kyung Ahn AHN@chop.edu 1718131891676 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288104983 HuBMAP White Male
|
|
70
|
+
c37ed0a5fa384dceb5d8914e221e9f08 HBM643.WWWB.264 years 72.0 kg/m2 27.4 Liz McDonough elizabeth.mcdonough@ge.com 1607625278997 General Electric RTI 1746717450157 HuBMAP Sun-exposed Site White Male
|
|
71
|
+
2e02511c039be12cb35a2448c00df890 HBM459.ZBRT.235 years 21.8 kg/m2 28.4 Adam Kagel ackagel@stanford.edu 1620779049562 Not Hispanic or Latino Stanford RTI 1746713345039 HuBMAP Black or African American Female
|
|
72
|
+
07cdcf7a151bc8f0ffab95f2fef365d7 HBM737.CKVT.222 years 24.6 kg/m2 32.4 Adam Kagel ackagel@stanford.edu 1620778812838 Not Hispanic or Latino Stanford RTI 1746718758021 HuBMAP Black or African American Female
|
|
73
|
+
be425f8a2963dda1d3a7a0c79de5e466 HBM765.TRHD.452 Blood Type A years 24.0 kg/m2 23.2 Cerebral edema Daniel Cotter Daniel.cotter@stanford.edu 1611779579789 Natural causes Stanford TMC cm 170.2 % 11.0 1746719172099 HuBMAP Liver failure White Female Heavy drinker, Intravenous drug use kg 67.3
|
|
74
|
+
4102d375082e94a2d4d0df1f49dcc37c HBM764.QMXN.857 Blood Type A years 30.0 kg/m2 27.9 Traumatic injury Daniel Cotter Daniel.cotter@stanford.edu 1649109033096 Stanford TMC cm 187.9 1746719428203 HuBMAP Traumatic injury White Male kg 98.4
|
|
75
|
+
8da70f4230fc86a3a2c4d78fb97b6937 HBM977.BPQW.336 years 26.0 kg/m2 37.28 Amanda Knoten aknoten@wustl.edu 1698253327198 Washington University Kidney TMC 1744642905311 HuBMAP White Female
|
|
76
|
+
f8d963cab6bd10e2a4b8184ea8197fc1 HBM289.BLHF.363 Blood Type A years 57.0 kg/m2 19.6 Cerebrovascular accident Diane Salamon salamond@wustl.edu 1577728454154 Natural causes University of California San Diego TMC cm 160.0 1746705433441 HuBMAP Intracranial hemorrhage Cardiac Arrest, Hypertension, Coronary Artery Disease White Female Smoker kg 50.2
|
|
77
|
+
1e0b527a436936050455fe755dfbaba2 HBM735.QDFT.264 years 67.0 kg/m2 32.14 Diane Salamon salamond@wustl.edu 1603993247279 University of California San Diego TMC cm 170.0 1746725522359 HuBMAP Hyperlipidimia, Renal Mass White Male Former smoker kg 93.9
|
|
78
|
+
a7335d585e467ca66f49d6c3a96b3480 HBM966.SPSL.946 years 29.0 kg/m2 29.6 Valentina Stanley vstanley@ucsd.edu 1645220359012 Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 160.0 1746723915161 HuBMAP White Female Non-smoker, Non-drinker kg 75.9
|
|
79
|
+
e3e625f5f072d99a5d9e31927787f23d HBM823.WVQN.738 Blood Type A years 45.0 kg/m2 21.67 Anoxia STEPHEN FISHER safisher@sas.upenn.edu 1690981653764 Suicide TMC - University of Pennsylvania cm 167.64 1746719935742 HuBMAP Asphyxiation Depression, Fibroadenoma of Breast, Migraine, Lupus, 21-hydroxylase deficiency White Female kg 60.9
|
|
80
|
+
ce5e4103f650c603a11af9aec4e39f1c HBM357.NSVB.926 years 70.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245350441 Fitzpatrick Skin Type III General Electric RTI 1744643658288 HuBMAP Unknown Male
|
|
81
|
+
202036986a596ae62029d7c8b42fc9b1 HBM549.JHGZ.653 years 25.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099260054 General Electric RTI cm 172.72 1776165750358 HuBMAP Sun-exposed Site Black or African American Male kg 84.09
|
|
82
|
+
237afab875558f309f7fae732c574858 HBM749.HKVG.744 years 61.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099262559 General Electric RTI cm 162.56 1776165713914 HuBMAP Black or African American Female kg 78.64
|
|
83
|
+
492f6839756af7cf576a4b97c768e723 HBM586.SDZD.467 years 66.0 kg/m2 32.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1630336299865 Vanderbilt TMC cm 182.9 1771527426917 HuBMAP White Male kg 108.9
|
|
84
|
+
3f66765e3561ee075f8b0d85c564b545 HBM638.SMWG.276 Blood Type A years 1.0 kg/m2 21.8 Cerebrovascular accident Marda Jorgensen marda@ufl.edu 1572636928841 Natural causes University of Florida TMC cm 68.0 % 77.0 1746716992385 HuBMAP Intracranial hemorrhage White Male kg 10.1
|
|
85
|
+
03c321173b4a961964a4392bd241e561 HBM338.KSBT.288 Blood Type A1 years 47.0 kg/m2 28.37 Anoxia Marda Jorgensen marda@ufl.edu 1611685932116 Natural causes University of Florida TMC cm 170.0 % 60.0 1746706070366 HuBMAP Cardiovascular Traumatic brain injury, Seizures White Male kg 82.0
|
|
86
|
+
4fc63b18451c435cb86ca301b4c25f5b HBM896.VZXP.254 Blood Type A years 43.0 kg/m2 41.3 Cerebrovascular accident Yiing Lin liny@wustl.edu 1612991097743 Natural causes California Institute of Technology TMC cm 190.5 % 55.0 1746723018585 HuBMAP Intracranial hemorrhage Hypertension White Male kg 150.0
|
|
87
|
+
113abb6e3391c3e73972bb6bbe147687 HBM383.HMFP.349 years 78.0 kg/m2 24.2 Amanda Knoten aknoten@wustl.edu 1639164558322 University of California San Diego TMC cm 160.0 1746706423360 HuBMAP Coronary Heart Disease, Hyperlipidimia White Male kg 62.0
|
|
88
|
+
4fd86bb6db7349c82d7bd50af5504a66 HBM425.SQGM.878 years 44.0 kg/m2 48.2 Jamie Allen allenj2@vanderbilt.edu 1577421250495 Vanderbilt TMC cm 158.8 1746707528106 HuBMAP Hypertension, Coronary Artery Disease, Gastrointestinal disease, Cancer White Female kg 121.5
|
|
89
|
+
44be1ce06db790c05bc5a1d763420919 HBM737.MBKD.598 years 64.0 Jamie Allen allenj2@vanderbilt.edu 1577422468956 Vanderbilt TMC 1744647962510 HuBMAP White Female
|
|
90
|
+
1ed352588aed81c522ffe88e05d150d3 HBM895.SFVK.576 years 67.0 kg/m2 23.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1708974948286 Vanderbilt TMC cm 175.3 1771527600623 HuBMAP Type 2 Diabetes Mellitus, Cancer Black or African American Female kg 71.7
|
|
91
|
+
296cea7d8e005cb990de413119450931 HBM639.WLKB.369 years 44.0 kg/m2 18.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1708982898573 Vanderbilt TMC cm 173.0 1771527609421 HuBMAP Hypertension Black or African American Male kg 55.8
|
|
92
|
+
a3eea2b738280127a70dc5bb364897f3 HBM667.SBGR.678 years 63.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712114778952 TTD - University of San Diego and City of Hope 1744670824557 HuBMAP Pathology note White Male
|
|
93
|
+
a0bea4ae0ce4e03efd04c22cc38db644 HBM666.XRTH.688 years 82.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115873134 TTD - University of San Diego and City of Hope 1744698925768 HuBMAP Pathology note White Female
|
|
94
|
+
03b6236566cfd44721421a789718862d HBM263.SKPP.554 years 75.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115768112 TTD - University of San Diego and City of Hope 1744698976707 HuBMAP Pathology note White Female
|
|
95
|
+
c09f875545a64694d70a28091ffbcf8b HBM534.PKFT.943 years 90.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116563142 TTD - University of San Diego and City of Hope 1744699029313 HuBMAP Pathology note White Female
|
|
96
|
+
b1acd1731563347de3a7b091280f560f HBM674.FJGN.569 years 60.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116251551 TTD - University of San Diego and City of Hope 1744699097392 HuBMAP Pathology note White Female
|
|
97
|
+
7af9ba89fed1dde0355897f22d14b002 HBM227.SPKS.834 years 58.0 Ting Peng pengt1@chop.edu 1735672812597 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1755019263568 HuBMAP White Male
|
|
98
|
+
563e5f156a56d9dbfd729ed784158af1 HBM288.VLPD.668 years 56.0 Ting Peng pengt1@chop.edu 1735673457876 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274001268 HuBMAP White Female
|
|
99
|
+
8307b58710040e5fe7e3f2e0b83dfee1 HBM472.XWBT.637 years 30.0 Alex Kong alkong@stanford.edu 1742256673367 Stanford University Bone Marrow TMC 1746027341514 HuBMAP Unknown Male
|
|
100
|
+
fbd376a8f62547e6edcb4af38399df6d HBM454.FNNC.534 years 39.0 Alex Kong alkong@stanford.edu 1742257541293 Stanford University Bone Marrow TMC 1746027550542 HuBMAP Unknown Male
|
|
101
|
+
80cd80e3b192330a03258544b263b951 HBM375.NBVW.858 years 41.0 Alex Kong alkong@stanford.edu 1742257366580 Stanford University Bone Marrow TMC 1746027458561 HuBMAP Unknown Male
|
|
102
|
+
d25070da5bc20c813af6c9eb93ad0f8c HBM633.FLHN.232 years 39.0 Alex Kong alkong@stanford.edu 1742257303693 Stanford University Bone Marrow TMC 1746027379297 HuBMAP Unknown Male
|
|
103
|
+
9ba0223da7dbd992aeca5954df72431f HBM285.JQXN.434 years 35.0 Alex Kong alkong@stanford.edu 1742257510290 Stanford University Bone Marrow TMC 1746027582103 HuBMAP Unknown Male
|
|
104
|
+
3b6b30f05851ab716b13fc3166cd9d73 HBM729.QCHZ.869 years 0.0 Alex Kong alkong@stanford.edu 1742257882334 Stanford University Bone Marrow TMC 1765551251752 HuBMAP Unknown Unknown
|
|
105
|
+
48b15ba8abfaef4e70edfdf173649b6c HBM485.KRGM.628 years 76.0 kg/m2 25.8 Diane Salamon salamond@wustl.edu 1585331859240 University of California San Diego TMC cm 157.5 1746714420263 HuBMAP Coronary Artery Disease, Gastrointestinal disease White Male kg 63.9
|
|
106
|
+
e3d3717ad581030c03bed6641d76e088 HBM735.BNLK.837 years 55.0 kg/m2 27.5 Amanda Knoten aknoten@wustl.edu 1638219429376 University of California San Diego TMC cm 157.5 1746718727495 HuBMAP Kidney cancer, Hypothyroidism, Hyperlipidimia White Female kg 68.1
|
|
107
|
+
4c99122862f4f34f80ee6d9cac36d61a HBM295.GHMR.582 years 54.0 kg/m2 38.6 Diane Salamon salamond@wustl.edu 1602794740886 University of California San Diego TMC cm 183.0 1746705462373 HuBMAP Hypertension White Male kg 130.0
|
|
108
|
+
c43e0aec3f224ed1ca7fc29af8c23f13 HBM639.DMTS.565 years 51.0 kg/m2 35.0 Amanda Knoten aknoten@wustl.edu 1681765922180 Not Hispanic or Latino Washington University Kidney TMC 1744583370592 HuBMAP White Male
|
|
109
|
+
568341e39723aa74971ca18a3c7b32fc HBM852.MVNB.965 years 53.0 kg/m2 39.0 Amanda Knoten aknoten@wustl.edu 1671730846297 Not Hispanic or Latino Washington University Kidney TMC 1744583392048 HuBMAP White Female
|
|
110
|
+
7a4c18180b1713a349b7857e4e5c117b HBM227.FJSH.368 years 51.0 kg/m2 26.2 Jamie Allen jamie.l.allen@vanderbilt.edu 1689118355176 Vanderbilt TMC cm 170.2 1771527450343 HuBMAP Cystic nephroma, Papillary adenoma, Disorder of renal parenchyma, Coronary arteriosclerosis White Male kg 76.0
|
|
111
|
+
6b955ebeafe9c351831bc36aa086575f HBM745.MDSR.597 years 53.0 kg/m2 26.5 Jamie Allen allenj2@vanderbilt.edu 1574711420442 Vanderbilt TMC cm 166.0 1746718850499 HuBMAP Hypertension, Coronary Artery Disease, Cancer Black or African American Male kg 73.0
|
|
112
|
+
6a3500763db1f3c39e5d6051e80e65eb HBM398.QCMJ.558 years 75.0 kg/m2 26.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1626709909967 Vanderbilt TMC 1746725053642 HuBMAP White Female
|
|
113
|
+
e727257a20a083467653328df4d15bef HBM852.DHHR.655 Blood Type A2 years 25.21 kg/m2 20.9 Cerebrovascular accident Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1625961171828 Natural causes Hispanic or Latino University of California San Diego TMC cm 183.0 1772804736227 HuBMAP Intracranial hemorrhage Neurological disease, Intracranial hemorrhage Pathology note Other Race Male Non-smoker, Non-drinker, Marijuana use kg 69.9
|
|
114
|
+
dfd0352b60504b321899f738c860e3fc HBM825.GBHD.667 years 57.0 kg/m2 30.5 Amanda Knoten aknoten@wustl.edu 1638305751546 University of California San Diego TMC cm 167.6 1746720021249 HuBMAP Kidney cancer, Hyperlipidimia White Female Smoker kg 85.7
|
|
115
|
+
763601015186b44f6c6bf48ff1d3d217 HBM239.CBFX.439 years 24.0 kg/m2 36.2 Valentina Stanley vstanley@ucsd.edu 1645220389011 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 154.9 1746700297390 HuBMAP Other Race Female Non-smoker, Non-drinker kg 87.0
|
|
116
|
+
ea45de5fc71d70915ffe9ae4a392913e HBM876.WPCZ.933 years 15.0 Po Hu hup2@chop.edu 1646341969481 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273827534 HuBMAP Black or African American Male
|
|
117
|
+
40d78d697bdee2223dc148f88dea0ef9 HBM365.QJRV.733 years 50.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1651846393530 General Electric RTI cm 187.96 1770387361086 HuBMAP Sun-exposed Site Black or African American Male kg 97.27
|
|
118
|
+
cc561d0d3840fe8482938208fe032a54 HBM783.WMTK.547 years 31.0 kg/m2 29.4 Cardiovascular Merissa Olmer molmer@scripps.edu 1652213179663 TMC - University of Connecticut cm 160.02 1746719506339 HuBMAP Asthma Black or African American Female Smoker, Drug Abuse kg 75.45
|
|
119
|
+
0201f8ab170c7af04c97cd86c25e2ab0 HBM694.WGWF.458 years 37.0 kg/m2 30.8 Amanda Knoten aknoten@wustl.edu 1652120634070 Hispanic or Latino University of California San Diego TMC 1746718478181 HuBMAP Unknown Male
|
|
120
|
+
95c77745825d5e47a0cd5cc5fd7d0c16 HBM697.KHFG.273 years 20.0 kg/m2 19.4 Gunshot wound Merissa Olmer molmer@scripps.edu 1652214285998 Hispanic or Latino TMC - University of Connecticut cm 167.64 1746718525772 HuBMAP Unknown Male kg 54.55
|
|
121
|
+
34a06f973f6f62344f1dad922589b1b5 HBM384.JGFB.757 years 51.0 Presha Rajbhandari pr2162@columbia.edu 1652290215119 TTD - Penn State University and Columbia University 1744668844528 HuBMAP Benign Hemangioma White Female
|
|
122
|
+
e9f8d577aa01abb9c6ffdd31862be16a HBM568.HLJW.252 years 43.0 kg/m2 24.7 Amanda Knoten aknoten@wustl.edu 1652387365784 University of California San Diego TMC 1746715359628 HuBMAP White Male
|
|
123
|
+
c9ab3141e36ebe1b4bf69c33ae4f8710 HBM232.MTBN.934 years 77.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099256953 General Electric RTI cm 167.64 1770387414309 HuBMAP Sun-exposed Site Black or African American Female kg 79.55
|
|
124
|
+
32885a6a09382af5552f1c3d9ea35703 HBM646.ZQWF.667 years 25.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099259375 General Electric RTI cm 68.0 1770387441028 HuBMAP Sun-exposed Site Black or African American Male kg 81.82
|
|
125
|
+
3203ec92c82ab68166c12c1ca605fc24 HBM946.SHGW.967 years 63.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099261603 General Electric RTI cm 68.0 1770387463021 HuBMAP Black or African American Female kg 73.18
|
|
126
|
+
3ed576707e7b303795a05df12117d00c HBM398.VDHQ.767 years 25.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099263949 General Electric RTI cm 59.0 1770387499913 HuBMAP Black or African American Male kg 52.27
|
|
127
|
+
620fa5f19ae338f73705ed365ee7ae06 HBM238.ZPRL.776 years 43.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099267656 General Electric RTI cm 165.1 1770387549552 HuBMAP Sun-exposed Site White Female kg 95.0
|
|
128
|
+
006fa6ab2cc1905176a720be15202ec0 HBM266.JPMQ.763 years 73.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099268103 General Electric RTI cm 59.5 1770387556359 HuBMAP White Female kg 74.09
|
|
129
|
+
a4325c909aacd6f28e601897925a9ffd HBM335.HKQP.822 years 58.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099268547 General Electric RTI cm 172.72 1770387563155 HuBMAP White Male kg 63.64
|
|
130
|
+
b8e3c1232ed6795ce389df0227eff1f0 HBM566.WFPK.939 years 19.99 kg/m2 27.13 Head trauma Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1719240985379 University of Rochester Medical Center TMC cm 182.88 1744739379556 HuBMAP Gunshot wound Traumatic brain injury Pathology note Black or African American Male kg 90.72
|
|
131
|
+
2bc97ff609a8775454bc2c9a276b70a2 HBM233.RNFH.358 years 45.0 kg/m2 35.3 Valentina Stanley vstanley@ucsd.edu 1645220215779 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 165.1 1746657006422 HuBMAP Unknown Female Non-smoker, Non-drinker kg 96.4
|
|
132
|
+
f8667a764f967d780c4ede50d602113e HBM683.TPQL.293 years 34.0 kg/m2 33.5 Valentina Stanley vstanley@ucsd.edu 1645220006110 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 160.0 1746718293134 HuBMAP White Female Non-smoker, Non-drinker kg 85.9
|
|
133
|
+
4413c7ba71ae446a8d4080b5ebbaf7fb HBM544.CDJS.566 years 21.0 kg/m2 21.8 Elizabeth Neumann neumane@vanderbilt.edu 1569005593184 Vanderbilt TMC cm 188.0 1746714835106 HuBMAP White Male kg 77.1
|
|
134
|
+
c624abbe9836c7e3b6a8d8216a316f30 HBM547.NCQL.874 years 73.0 kg/m2 33.2 Elizabeth Neumann neumane@vanderbilt.edu 1572634150886 Vanderbilt TMC cm 162.3 1746715082565 HuBMAP Hypertension, Coronary Artery Disease, Type 2 Diabetes Mellitus, Cancer White Female kg 87.5
|
|
135
|
+
6ddd0a5dc3594f920b4bd0be142e5de6 HBM439.NKGB.976 Blood Type B years 58.84 kg/m2 22.2 Head trauma Andrew Watts Andrew_Watts@URMC.Rochester.edu 1730824340140 University of Rochester Medical Center TMC cm 175.0 1746551354796 HuBMAP Fall COVID-19, Pneumonia, Hypertension, Intracranial hemorrhage Black or African American Male kg 68.0
|
|
136
|
+
491a7cc64e938429c740eca7fc480b5d HBM487.DNHS.269 Blood Type O years 38.0 kg/m2 23.2 Valentina Stanley vstanley@ucsd.edu 1693235644728 Not Hispanic or Latino weeks 37.7 TMC - University of California San Diego focusing on female reproduction cm 162.56 1746714473084 HuBMAP Cesarian section, Salpingectomy, Intrauterine growth retardation Asian Rh positive Female Non-smoker kg 61.36
|
|
137
|
+
afb85fa8773800c159667e6108b83fb0 HBM358.SSWW.226 years 35.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269704812 Vanderbilt TMC 1744669988127 HuBMAP White Male
|
|
138
|
+
c6d9eafc5c58682267f4e44697d7cecf HBM846.JLCX.553 years 18.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269809883 Hispanic or Latino Vanderbilt TMC 1744669553475 HuBMAP Unknown Male
|
|
139
|
+
f58193dac5744f5099f108c107e7d511 HBM554.GWGS.328 years 24.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269845501 Vanderbilt TMC 1744670250204 HuBMAP White Male
|
|
140
|
+
838edb62c2d613403121c1910cea27c2 HBM857.ZPKW.274 years 65.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714446492750 Vanderbilt TMC 1775584910831 HuBMAP White Male
|
|
141
|
+
805642e38eead146f4f6caa6e2024b7e HBM878.ZHGT.858 years 58.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1738293552209 Vanderbilt TMC 1775585304813 HuBMAP White Male
|
|
142
|
+
27b00623b7db8ab135a9ad6ed3f76197 HBM497.LHQK.626 years 69.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1737757035923 Vanderbilt TMC 1775585086004 HuBMAP White Female
|
|
143
|
+
deeb281e5ae4cf8bdf07c339da6c1026 HBM934.WDHB.379 years 50.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714440620735 Vanderbilt TMC 1775584657058 HuBMAP White Female
|
|
144
|
+
cde9e47c8702aa609988731470b504d4 HBM257.NVJR.359 years 70.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1737757298388 Vanderbilt TMC 1775585149210 HuBMAP Black or African American Male
|
|
145
|
+
6d285926ae00557deb66d30b1bcf6649 HBM834.QHSW.448 Blood Type O years 33.0 kg/m2 34.06 Cardiovascular STEPHEN FISHER safisher@sas.upenn.edu 1690981745434 Natural causes TMC - University of Pennsylvania cm 162.56 1746720197956 HuBMAP Intracranial hemorrhage Seizures, Eating Disorder White Rh positive Female Smoker, Alcohol use kg 90.0
|
|
146
|
+
a67d16851fd69823c34da1d53a1b1ef7 HBM665.XRML.366 years 63.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714440353613 Vanderbilt TMC 1775584556745 HuBMAP Black or African American Male
|
|
147
|
+
670aa40d3780444f5adaa50ce3768c5e HBM326.ZRRN.387 years 40.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1738619456544 Vanderbilt TMC 1775585369366 HuBMAP Black or African American Female
|
|
148
|
+
88e957136588e2c4a9ed55a590eefb69 HBM777.VWTW.993 years 71.0 Kyung Ahn AHN@chop.edu 1718045334521 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288078192 HuBMAP White Female
|
|
149
|
+
709a6e5ffd81519cf8cd1b1125b551fc HBM865.KVLR.627 years 22.1 kg/m2 21.7 Adam Kagel ackagel@stanford.edu 1620779058173 Not Hispanic or Latino Stanford RTI 1746721600388 HuBMAP White Female
|
|
150
|
+
26cc9d6097a5193a5ca647d0b72a1627 HBM892.LCXT.493 years 57.0 kg/m2 34.5 Liz McDonough elizabeth.mcdonough@ge.com 1607625180344 General Electric RTI 1746722727458 HuBMAP Sun-exposed Site White Male
|
|
151
|
+
95a62662006235867084078a1e10bebf HBM245.ZWNT.288 Blood Type AB years 10.0 kg/m2 22.2 Head trauma Marda Jorgensen marda@ufl.edu 1603122909220 Motor vehicle accident University of Florida TMC cm 150.0 % 39.0 1746700399141 HuBMAP Blunt Injury White Male kg 50.0
|
|
152
|
+
06d4bd504714be03ab2c8a49f3031f5b HBM684.PWMB.532 years 26.6 kg/m2 21.6 Adam Kagel ackagel@stanford.edu 1620778721628 Stanford RTI 1746718329607 HuBMAP White Female
|
|
153
|
+
6ffb892af727ea0f36da40069437f84e HBM785.PJVQ.784 years 23.2 kg/m2 21.8 Adam Kagel ackagel@stanford.edu 1620779025058 Hispanic or Latino Stanford RTI 1746719588258 HuBMAP Unknown Female
|
|
154
|
+
7293d9ff07b4b6c6a6a8745dc259ba4c HBM839.HVVG.487 years 65.0 Kyung Ahn AHN@chop.edu 1718044525343 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288063436 HuBMAP Black or African American Female
|
|
155
|
+
639066967d26730b60207e28f2d3f755 HBM464.BXRF.676 years 33.2 kg/m2 30.4 Adam Kagel ackagel@stanford.edu 1620778599164 Not Hispanic or Latino Stanford RTI 1746713374343 HuBMAP White Female
|
|
156
|
+
2e72853d283dcfbfd1b6535155fac8f7 HBM872.CNQT.342 years 36.2 kg/m2 22.3 Adam Kagel ackagel@stanford.edu 1620778747141 Stanford RTI 1746721829996 HuBMAP Unknown Female
|
|
157
|
+
cae295acebc5a6bbc62b58a825fc50ea HBM438.ZMBC.864 years 72.0 Kyung Ahn AHN@chop.edu 1718132174381 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288121327 HuBMAP Black or African American Male
|
|
158
|
+
30a05ebef4b18710f669e7d55fc74652 HBM458.RKKC.257 years 24.1 kg/m2 37.8 Adam Kagel ackagel@stanford.edu 1620778765222 Hispanic or Latino Stanford RTI 1746713316914 HuBMAP Unknown Female
|
|
159
|
+
a0c1a06ebcacd9f4b274797e9ff6703c HBM629.MBTF.679 years 48.0 Liz McDonough elizabeth.mcdonough@ge.com 1607627217281 General Electric RTI 1744662576290 HuBMAP White Male
|
|
160
|
+
8e6b7b430c8dfaa9f59af2f89ef47799 HBM887.BBHX.763 years 24.0 kg/m2 32.0 Adam Kagel ackagel@stanford.edu 1620778956300 Not Hispanic or Latino Stanford RTI 1746722434967 HuBMAP Gonorrhea Black or African American Female Smoker, Marijuana use
|
|
161
|
+
7e1b407385a22cdaec8b3c1a28e3cc54 HBM878.NMNQ.382 years 36.1 kg/m2 22.7 Adam Kagel ackagel@stanford.edu 1620779043549 Stanford RTI 1746722039503 HuBMAP Asian Female Smoker
|
|
162
|
+
258d4da2e65a189db39d049eecbfca91 HBM372.JZTV.423 years 60.0 Liz McDonough elizabeth.mcdonough@ge.com 1607624130204 General Electric RTI 1744661976140 HuBMAP Sun-exposed Site White Male
|
|
163
|
+
bb1db3342bd5092fc28a967315f3cf44 HBM889.TKCD.645 years 36.6 kg/m2 24.0 Adam Kagel ackagel@stanford.edu 1620778687261 Stanford RTI 1746722696689 HuBMAP Asian Female
|
|
164
|
+
909b44eb01033314b357a3692b583387 HBM237.PDJB.444 Blood Type B years 38.0 kg/m2 29.0 Cerebrovascular accident Daniel Cotter Daniel.cotter@stanford.edu 1611779642982 Natural causes Stanford TMC cm 182.9 % 41.0 1746657128604 HuBMAP Intracranial hemorrhage White Male kg 97.0
|
|
165
|
+
63108adadd97a60ea7bdc84498384069 HBM499.VJVR.265 years 33.0 kg/m2 24.3 Liz McDonough elizabeth.mcdonough@ge.com 1607627173015 General Electric RTI 1746714574686 HuBMAP White Female
|
|
166
|
+
3344d2239568c83659614c58a2132d54 HBM985.SRDM.799 years 22.3 kg/m2 20.2 Adam Kagel ackagel@stanford.edu 1620778970833 Not Hispanic or Latino Stanford RTI 1746724285812 HuBMAP White Female
|
|
167
|
+
7165852f977a966b6cfac523e5f336c5 HBM673.XCMV.342 years 65.0 Kyung Ahn AHN@chop.edu 1718044930400 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288070746 HuBMAP Black or African American Female
|
|
168
|
+
9b52efad34df0cca520909e1cb22cc43 HBM987.VCFN.282 Blood Type A years 1.6 kg/m2 24.71 Cardiovascular Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1709842334492 University of Rochester Medical Center TMC cm 71.12 1746724307056 HuBMAP Bronchopulmonary dysplasia, Intrauterine growth retardation, Pulmonary hypertension, Premature birth, Extremely low birth weight White Female kg 12.5
|
|
169
|
+
fd607ecb9ca9dfab245d84d491f89601 HBM366.PHFM.435 years 20.5 kg/m2 25.1 Adam Kagel ackagel@stanford.edu 1620778631463 Hispanic or Latino Stanford RTI 1746706240189 HuBMAP Unknown Female
|
|
170
|
+
b5b8b8272d214725072b616b5ca199d7 HBM875.KTPB.893 years 41.0 kg/m2 29.1 Liz McDonough elizabeth.mcdonough@ge.com 1607626940898 General Electric RTI 1746721955165 HuBMAP Sun-exposed Site White Female
|
|
171
|
+
da320fb2114ed3535ae97dde9abd7475 HBM893.NQHW.385 Blood Type A years 61.0 kg/m2 31.1 Anoxia Yiing Lin liny@wustl.edu 1616352335628 Accident California Institute of Technology TMC cm 177.8 % 68.0 1746722860601 HuBMAP Asphyxiation Cardiac Arrest White Male kg 98.2
|
|
172
|
+
46f5a22e8aa0ca64f295a66463e73341 HBM989.SWJP.679 years 35.0 kg/m2 28.9 Valentina Stanley vstanley@ucsd.edu 1645220473139 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 167.6 1746724346097 HuBMAP White Female Non-smoker, Non-drinker kg 81.4
|
|
173
|
+
b33d643ace4eaceab0ae5aad9f8e5128 HBM865.JQXX.939 years 55.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269589422 Vanderbilt TMC 1744840678527 HuBMAP Black or African American Female
|
|
174
|
+
4d63b201d1bce35f8766e96b42a6174d HBM566.BPSQ.952 years 59.0 kg/m2 30.0 Amanda Knoten aknoten@wustl.edu 1681838875205 Not Hispanic or Latino Washington University Kidney TMC 1744583528590 HuBMAP White Female
|
|
175
|
+
2774506766c2cbb2077037000c195476 HBM479.SJGD.976 Blood Type A years 28.0 kg/m2 31.6 Valentina Stanley vstanley@ucsd.edu 1693235648726 Not Hispanic or Latino weeks 39.3 TMC - University of California San Diego focusing on female reproduction cm 165.1 1746713707462 HuBMAP Salpingectomy, Cesarian section, Gestational diabetes mellitus class A1 Black or African American Rh positive Female Non-smoker kg 86.36
|
|
176
|
+
7525aa868f2f7d2508f0e24b18a2b1b0 HBM939.TVDQ.296 years 56.0 kg/m2 27.7 Amanda Knoten aknoten@wustl.edu 1638296052759 Natural causes University of California San Diego TMC cm 180.3 1746723437387 HuBMAP Kidney cancer, Type 1 Diabetes Mellitus, Hypertension, Hyperlipidimia Black or African American Male kg 90.0
|
|
177
|
+
ff043e8a4b6d7b21620ad9f0978238d0 HBM377.WFTZ.879 years 75.0 kg/m2 32.0 Amanda Knoten aknoten@wustl.edu 1638297750997 University of California San Diego TMC cm 152.4 1746706378089 HuBMAP Kidney cancer, Type 1 Diabetes Mellitus, Gastroesophageal reflux disease, Depression, Ovarian cancer, Hyperlipidimia White Female kg 74.8
|
|
178
|
+
d876de578e9d8c2ce2dcd7c1bbb00681 HBM994.SGLP.263 years 65.0 kg/m2 30.3 Amanda Knoten aknoten@wustl.edu 1638298386089 University of California San Diego TMC cm 188.0 1746724509504 HuBMAP Kidney cancer, Hypertension, Hyperlipidimia White Male Smoker kg 107.0
|
|
179
|
+
1b85f5bde815c383795cf892b229ec61 HBM399.FCNS.563 years 76.0 kg/m2 26.9 Jamie Allen jamie.l.allen@vanderbilt.edu 1629836424297 Vanderbilt TMC cm 170.2 1771527397437 HuBMAP White Female kg 78.0
|
|
180
|
+
49f0866c1e3bcf5ec1f381cf96f0dd06 HBM662.VVHK.499 years 37.0 Amanda Knoten aknoten@wustl.edu 1652114814543 University of California San Diego TMC 1744826719396 HuBMAP Black or African American Male
|
|
181
|
+
6433ea8557d7d519929be3215bcac59f HBM735.MKMD.632 years 5.0 kg/m2 29.28 Amanda Knoten aknoten@wustl.edu 1652114512559 University of California San Diego TMC 1744838692431 HuBMAP Black or African American Female
|
|
182
|
+
75a37c969806232516451da0d3688a2c HBM297.WPCR.633 months 17.0 Amanda Knoten aknoten@wustl.edu 1652113703220 University of California San Diego TMC 1744914451877 HuBMAP White Female
|
|
183
|
+
d37df2cad4e80dc368763caefccf7140 HBM475.LQWJ.329 years 49.0 kg/m2 31.2 Gunshot wound Merissa Olmer molmer@scripps.edu 1652215507689 Suicide TMC - University of Connecticut cm 182.88 1746713618394 HuBMAP White Male kg 104.55
|
|
184
|
+
71c1f683d10435a3d9cbb7f6052d3900 HBM386.FNTC.294 years 25.0 kg/m2 29.2 Amanda Knoten aknoten@wustl.edu 1652387094104 University of California San Diego TMC 1746707244769 HuBMAP White Male
|
|
185
|
+
b211e8d13c99498cbe092ba118b7a919 HBM767.TXHM.452 years 25.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099258912 General Electric RTI cm 160.02 1770387434155 HuBMAP Sun-exposed Site Black or African American Male kg 81.82
|
|
186
|
+
46a3463b7cc0500c078fe42163f3ccc3 HBM254.BZLT.626 years 49.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099260524 General Electric RTI cm 177.8 1770387835000 HuBMAP Sun-exposed Site Black or African American Male kg 86.36
|
|
187
|
+
37dbb80e3e11db9ad991b8bef6f4f91c HBM598.CCDT.643 years 53.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099261155 General Electric RTI cm 63.0 1770387455673 HuBMAP Black or African American Female kg 70.45
|
|
188
|
+
615ec86d4ba27cfe1adb376969c18f1e HBM422.BTJS.865 years 54.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099266215 General Electric RTI cm 162.56 1770387528607 HuBMAP Sun-exposed Site White Female kg 76.36
|
|
189
|
+
a4804403e2c120cd1c57c6c794cc498c HBM952.VDWR.832 years 26.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099263480 General Electric RTI cm 162.56 1770387493044 HuBMAP Black or African American Male kg 72.73
|
|
190
|
+
bccdf485202a951e8c004c1020b22a3f HBM448.TJJH.494 years 65.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099266704 General Electric RTI cm 167.64 1770387535469 HuBMAP Sun-exposed Site White Female kg 50.91
|
|
191
|
+
d3b8a7e0ebf425fd33bd986da33f49de HBM579.QJNH.965 years 35.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099267159 General Electric RTI cm 180.34 1770387542651 HuBMAP Sun-exposed Site White Male kg 79.55
|
|
192
|
+
49a6fdc8c6d1ab240989e14558e8843e HBM945.XDNK.323 years 25.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099268992 General Electric RTI cm 167.64 1770387569972 HuBMAP White Female kg 63.64
|
|
193
|
+
23ae880e9eb7e534822c6292ee034994 HBM763.WXSF.832 years 83.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1624638887514 Vanderbilt TMC 1744839505875 HuBMAP White Male
|
|
194
|
+
5cc62ac9233e8c5d6c42b68df5b7bdd5 HBM993.RDQV.873 years 75.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115645252 TTD - University of San Diego and City of Hope 1744842274046 HuBMAP Pathology note White Female
|
|
195
|
+
4d96c4c5e70f686b97834a2fb3ded8f8 HBM264.QWCQ.835 years 64.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115091990 TTD - University of San Diego and City of Hope 1744901626272 HuBMAP Pathology note White Male
|
|
196
|
+
c9c39035edc9de812f6a9de03452c508 HBM543.JFMX.339 years 71.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116073194 TTD - University of San Diego and City of Hope 1744901792409 HuBMAP Pathology note White Male
|
|
197
|
+
b8873446177572dc3abc4d512cd47f4c HBM375.HTWR.458 years 57.0 Ting Peng pengt1@chop.edu 1735672938328 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274026416 HuBMAP White Female
|
|
198
|
+
df7809a848462f7370bc1e2f083faa22 HBM845.CGVD.694 years 50.0 Ting Peng pengt1@chop.edu 1735673024958 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1755019324226 HuBMAP Black or African American Female
|
|
199
|
+
0e968e09b6e0e70fd3d8ab10d0e37793 HBM447.SPVD.553 years 57.0 Ting Peng pengt1@chop.edu 1735673299169 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273933862 HuBMAP White Male
|
|
200
|
+
3a9ceb543623c725aef5ae12e7a260a5 HBM437.BHXL.365 years 29.0 Alex Kong alkong@stanford.edu 1742256409082 Stanford University Bone Marrow TMC 1746027233165 HuBMAP Unknown Male
|
|
201
|
+
166aca6e2ff62a7dc370fdf3bbe8fbe1 HBM853.LWHF.458 years 39.0 Alex Kong alkong@stanford.edu 1742257939822 Stanford University Bone Marrow TMC 1746027684045 HuBMAP Unknown Male
|
|
202
|
+
5fb09275600335c3200bc2c7504671f6 HBM428.NRVM.386 years 0.0 Alex Kong alkong@stanford.edu 1742257903971 Stanford University Bone Marrow TMC 1765551257903 HuBMAP Unknown Unknown
|
|
203
|
+
778bb21a8ed326fc312c6601476997da HBM929.FPWD.848 years 30.0 Ting Peng pengt1@chop.edu 1749500323526 Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274107775 HuBMAP Unknown Female
|
|
204
|
+
f3ebc6f98ea0c7912e477abf510b66af HBM594.QHXH.558 years 61.0 Ting Peng pengt1@chop.edu 1749500249786 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274159482 HuBMAP White Female
|
|
205
|
+
2a88141ee11dfe080c01db3620a35a39 HBM277.DBXJ.256 Blood Type O years 25.0 kg/m2 33.5 Anoxia Diane Salamon salamond@wustl.edu 1577724752261 Accident University of California San Diego TMC cm 160.0 % 40.0 1746704962288 HuBMAP Drug intoxication Cardiac Arrest White Female kg 86.0
|
|
206
|
+
613776ac210f65a63462ce6f926f4557 HBM833.LBTG.876 years 29.0 kg/m2 42.3 Diane Salamon salamond@wustl.edu 1594849325963 University of California San Diego TMC cm 193.0 1746720103191 HuBMAP White Male kg 158.0
|
|
207
|
+
cb756aef2bc5ef3fa20b6f140801d1d2 HBM723.NSQV.587 Blood Type A1 years 14.0 kg/m2 15.87 Head trauma Marda Jorgensen marda@ufl.edu 1634134749652 Homicide Hispanic or Latino University of Florida TMC cm 167.64 % 6.0 1746718615927 HuBMAP Gunshot wound Unknown Male kg 44.6
|
|
208
|
+
79669218b9f27e3aa196b84c532d60d3 HBM985.MBDB.567 years 60.0 kg/m2 18.5 Anoxia Yiing Lin liny@wustl.edu 1612990874014 California Institute of Technology TMC cm 190.5 % 77.0 1746724253642 HuBMAP Drug intoxication Cardiac Arrest Black or African American Male kg 67.3
|
|
209
|
+
17ca4161891a617a8b49b942edf93272 HBM275.NCXJ.869 years 40.0 kg/m2 25.5 Amanda Knoten aknoten@wustl.edu 1639164900916 University of California San Diego TMC cm 168.0 1746704819662 HuBMAP White Female kg 72.0
|
|
210
|
+
190aec1937701a97952b34cfac5529a3 HBM546.MHVZ.749 Blood Type A years 50.0 kg/m2 25.7 Cerebrovascular accident Yiing Lin liny@wustl.edu 1577128332598 Natural causes California Institute of Technology TMC cm 175.3 % 74.0 1746715022224 HuBMAP Intracranial hemorrhage Hypertension Black or African American Male kg 79.1
|
|
211
|
+
3b5d057daf1e84d746d01a16acf4f0bb HBM796.MXZR.526 years 65.0 kg/m2 31.7 Head trauma Christine Briggs christine_briggs@hms.harvard.edu 1626270069049 EXT - Human Cell Atlas 1746719729871 Human Cell Atlas White Male
|
|
212
|
+
ca10ede410dee22a4eb8a1f8cbbd526b HBM924.QHJN.586 years 43.0 kg/m2 27.1 Jamie Allen jamie.l.allen@vanderbilt.edu 1601492284251 Vanderbilt TMC 1746722983421 HuBMAP White Male
|
|
213
|
+
dfe60e10cebff56bebed07ef38a7e6f1 HBM452.KSNV.453 years 64.0 kg/m2 30.1 Jamie Allen jamie.l.allen@vanderbilt.edu 1628106856033 Vanderbilt TMC cm 160.0 1746610366369 HuBMAP White Female kg 77.1
|
|
214
|
+
ca8737a61a931bade511b710aed96098 HBM889.KSKV.978 years 66.0 kg/m2 39.4 Jamie Allen jamie.l.allen@vanderbilt.edu 1627333608379 Vanderbilt TMC 1746722516740 HuBMAP White Female
|
|
215
|
+
3c3c49c7d38960fc1f8275dcf4e412f9 HBM938.LVRS.434 years 58.0 kg/m2 23.0 Elizabeth Neumann neumane@vanderbilt.edu 1572634896791 Vanderbilt TMC cm 160.0 1746723410179 HuBMAP Cancer White Female kg 59.0
|
|
216
|
+
c07f39795ed04df93bc60075e34fd654 HBM522.WZBV.379 years 48.0 kg/m2 35.3 Jamie Allen allenj2@vanderbilt.edu 1574710617989 Vanderbilt TMC cm 193.0 1746714630135 HuBMAP Hypertension, Coronary Artery Disease, Cancer White Male kg 131.5
|
|
217
|
+
ac82ed9546fa28b65ffcd8b9b0317fbb HBM548.WWTL.633 years 65.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1714446571797 Vanderbilt TMC 1775584969178 HuBMAP White Male
|
|
218
|
+
a43f63e2166c3b02d3dbb587bd2bcc29 HBM368.RLCN.645 years 37.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1681408380312 Vanderbilt TMC 1775584518442 HuBMAP White Male
|
|
219
|
+
00c0c36eea3af1ee90c380d8cca33094 HBM968.WVQK.232 years 65.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1737757510252 Vanderbilt TMC 1775585228137 HuBMAP White Unknown
|
|
220
|
+
3891618e4582a9243476defa32d05765 HBM676.JGPF.228 Blood Type O years 42.0 kg/m2 40.0 Valentina Stanley vstanley@ucsd.edu 1754000843507 Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 162.56 1774290682976 HuBMAP Type 2 Diabetes Mellitus, Salpingectomy, Asthma White Rh positive Unknown Non-smoker, Non-drinker kg 105.45
|
|
221
|
+
b8f375d33daa5228782abd838d851b8d HBM375.PJSC.682 Blood Type O years 59.0 kg/m2 23.1 Cerebrovascular accident Diane Salamon salamond@wustl.edu 1594665779172 Natural causes University of California San Diego TMC cm 172.3 1746706347764 HuBMAP Intracranial hemorrhage Cardiac Arrest, Coronary Artery Disease White Female kg 69.0
|
|
222
|
+
59fcdc50470eaa8f1f223fd50643b67d HBM829.VSBM.592 Blood Type A years 37.0 kg/m2 40.4 Valentina Stanley vstanley@ucsd.edu 1693235661155 Not Hispanic or Latino weeks 33.4 TMC - University of California San Diego focusing on female reproduction cm 170.18 1746720071385 HuBMAP Gestational diabetes mellitus, Salpingectomy, Cesarian section, Vasa previa White Rh positive Female Non-smoker kg 117.27
|
|
223
|
+
4397fcd072ac96299992b47da1dbae64 HBM943.SCQQ.877 years 37.0 Cerebrovascular accident Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1597681398391 Natural causes University of California San Diego TMC cm 182.88 1746723623134 HuBMAP Intracranial hemorrhage Hypertension Black or African American Male kg 150.9
|
|
224
|
+
4587eeb6aa513811a85d0cc32d1866dd HBM643.KCCK.866 Blood Type A2 years 56.8 kg/m2 19.51 Cerebrovascular accident Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1653272107101 Hispanic or Latino University of California San Diego TMC cm 157.0 1746717090446 HuBMAP Intracranial hemorrhage Hypertension, Breast cancer, Polycystic kidney disease, Aneurysm Other Race Female kg 48.1
|
|
225
|
+
14fe19053a863e17b397bf4acb465c03 HBM687.KPKM.763 years 56.0 kg/m2 27.7 Jamie Allen allenj2@vanderbilt.edu 1575566889664 Vanderbilt TMC cm 181.6 1746718429012 HuBMAP Cancer White Male kg 91.4
|
|
226
|
+
c16891deebece9ef23d7f7c13c81b671 HBM644.NRTT.882 years 38.0 kg/m2 42.3 Jamie Allen allenj2@vanderbilt.edu 1577419660525 Vanderbilt TMC cm 165.1 1746717484914 HuBMAP Cancer White Female kg 115.2
|
|
227
|
+
bf0ac98a2430ff9d5de26f1b31ccb7f1 HBM437.LSKV.433 years 64.0 kg/m2 29.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1689283579410 Vanderbilt TMC cm 177.8 1771527466450 HuBMAP Renal cell carcinoma White Male kg 94.0
|
|
228
|
+
c9c683627750460e2f84e3eedb729ce0 HBM642.WRSN.866 years 74.0 kg/m2 21.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1629487546730 Vanderbilt TMC cm 157.5 1771527382271 HuBMAP White Female kg 52.2
|
|
229
|
+
ecdedc02b4035fb812a6a92e432f6da4 HBM653.LWQW.923 years 70.0 kg/m2 31.9 Jamie Allen jamie.l.allen@vanderbilt.edu 1629836779672 Vanderbilt TMC cm 185.4 1771527405269 HuBMAP White Male kg 109.6
|
|
230
|
+
53feac981a77e82228b6852676eab7a8 HBM629.GQQS.558 years 82.0 kg/m2 25.8 Jamie Allen jamie.l.allen@vanderbilt.edu 1689365316362 Vanderbilt TMC cm 180.3 1771527500405 HuBMAP Renal cell carcinoma, Hypertension, Type 2 Diabetes Mellitus, Prostate cancer Black or African American Male kg 83.9
|
|
231
|
+
3dbe596e94037ae9c342ca99f1c1fa6a HBM775.KNMV.667 years 68.0 kg/m2 27.4 Jamie Allen jamie.l.allen@vanderbilt.edu 1689615939676 Vanderbilt TMC cm 172.7 1771527516115 HuBMAP Renal cell carcinoma, Hypertension, Myocardial infarction, Gastroesophageal reflux disease White Male kg 81.6
|
|
232
|
+
adb1092f3014456035856038d28384bf HBM995.MCPS.967 years 37.0 kg/m2 28.9 Valentina Stanley vstanley@ucsd.edu 1645220153580 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 157.5 1746724819095 HuBMAP White Female Non-smoker, Non-drinker kg 71.8
|
|
233
|
+
dd258063b8389612a9596af734143906 HBM525.JNPV.685 years 58.0 kg/m2 22.0 Elizabeth Neumann neumane@vanderbilt.edu 1572635087412 Vanderbilt TMC cm 190.5 1746714716079 HuBMAP Hypertension, Coronary Artery Disease Black or African American Male kg 79.9
|
|
234
|
+
6a152306bc81179d7a1598b0d549147a HBM954.JKPM.689 years 21.2 kg/m2 34.0 Adam Kagel ackagel@stanford.edu 1620778886299 Not Hispanic or Latino Stanford RTI 1746726092411 HuBMAP Black or African American Female Smoker
|
|
235
|
+
7c9a3c0bae92eaca02c573f4e98f92a2 HBM932.TWTD.282 years 24.8 kg/m2 30.0 Adam Kagel ackagel@stanford.edu 1620778795368 Not Hispanic or Latino Stanford RTI 1746723313219 HuBMAP Black or African American Female
|
|
236
|
+
46488d059770e86d823e6d4095b95d3b HBM229.FKHP.822 years 30.2 kg/m2 30.3 Adam Kagel ackagel@stanford.edu 1620778658719 Not Hispanic or Latino Stanford RTI 1746656849367 HuBMAP Black or African American Female
|
|
237
|
+
8bfba7cfb7d743521457c95deaa8bd83 HBM782.FVSK.843 years 26.9 kg/m2 27.8 Adam Kagel ackagel@stanford.edu 1620778999189 Hispanic or Latino Stanford RTI 1746719472078 HuBMAP Unknown Female Intravenous drug use
|
|
238
|
+
1785aae4f0fb8f13a56d79957d1cbedf HBM966.VNKN.965 Blood Type O years 20.0 kg/m2 28.7 Head trauma Marda Jorgensen marda@ufl.edu 1603122722901 Suicide University of Florida TMC cm 178.0 1746723953861 HuBMAP Gunshot wound White Rh positive Male kg 91.2
|
|
239
|
+
1b52ca300fad097150586909d6c757a5 HBM628.QQKL.598 years 26.9 kg/m2 29.4 Adam Kagel ackagel@stanford.edu 1620778735032 Hispanic or Latino Stanford RTI 1746716512140 HuBMAP Unknown Female
|
|
240
|
+
9ee215ee8fc2785020867ea7f15ccb12 HBM562.GGHR.559 years 36.3 kg/m2 29.4 Adam Kagel ackagel@stanford.edu 1620778992524 Stanford RTI 1746715224344 HuBMAP Asian Female
|
|
241
|
+
6be77aaf694a4c2bc541346b9adfdb86 HBM635.WSMC.463 years 30.0 kg/m2 27.5 Valentina Stanley vstanley@ucsd.edu 1645220507891 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 160.2 1746716870880 HuBMAP White Female Non-smoker, Non-drinker kg 61.0
|
|
242
|
+
ee702a6aa459b70ba3446d3f5918372c HBM383.KBWJ.348 years 27.5 kg/m2 38.1 Adam Kagel ackagel@stanford.edu 1620778963603 Not Hispanic or Latino Stanford RTI 1746706470150 HuBMAP White Female
|
|
243
|
+
ab29e9db4f65d7788fcb8962442a6438 HBM883.KQKB.228 years 37.4 kg/m2 21.0 Adam Kagel ackagel@stanford.edu 1620778848998 Not Hispanic or Latino Stanford RTI 1746722282784 HuBMAP Hypertension, Breast cancer White Female Smoker
|
|
244
|
+
91f68068441036ddc500b8cf4ada0fcc HBM428.LXBC.645 years 31.5 kg/m2 28.7 Adam Kagel ackagel@stanford.edu 1620778611427 Hispanic or Latino Stanford RTI 1746712872378 HuBMAP Unknown Female
|
|
245
|
+
20fc336823ab141ab385053c9863f125 HBM292.WXMV.343 years 27.9 kg/m2 23.0 Adam Kagel ackagel@stanford.edu 1620778824775 Not Hispanic or Latino Stanford RTI 1746724986511 HuBMAP White Female
|
|
246
|
+
3e1c9c93b22629adc65c5cf61acec775 HBM544.HLGV.346 years 33.2 kg/m2 53.0 Adam Kagel ackagel@stanford.edu 1620778912558 Hispanic or Latino Stanford RTI 1746714900450 HuBMAP Hypertension, Type 2 Diabetes Mellitus Unknown Female Smoker
|
|
247
|
+
a46c51540c0608d9369aeb809b443f53 HBM649.WCGC.477 years 21.6 kg/m2 46.7 Adam Kagel ackagel@stanford.edu 1620779115772 Not Hispanic or Latino Stanford RTI 1746717629621 HuBMAP Black or African American Female
|
|
248
|
+
25fd10f300c96818d34ffbe38d52d134 HBM845.MJNG.266 years 38.0 kg/m2 21.8 Liz McDonough elizabeth.mcdonough@ge.com 1607627079118 General Electric RTI 1746725560319 HuBMAP Sun-exposed Site Unknown Male
|
|
249
|
+
65efcf004d21d8f2dbadf4bc5f97cb36 HBM384.NNQH.676 years 69.0 kg/m2 27.3 Liz McDonough elizabeth.mcdonough@ge.com 1607626808514 General Electric RTI 1746707219960 HuBMAP White Male
|
|
250
|
+
ab8f70d4776be3821f642e7f6495300c HBM636.ZSVF.869 years 32.0 kg/m2 25.8 Liz McDonough elizabeth.mcdonough@ge.com 1607627123717 General Electric RTI 1746716894431 HuBMAP White Female
|
|
251
|
+
64ee84d2235ec166d241ba747dc6418b HBM265.FCRT.233 years 29.3 Adam Kagel ackagel@stanford.edu 1620779004454 Stanford RTI 1730481288469 HuBMAP Pre-eclampsia Unknown Female Smoker
|
|
252
|
+
80861d1897f0427a91e8e1886bde9009 HBM296.VWDQ.246 Blood Type O years 37.0 kg/m2 27.9 Anoxia Daniel Cotter Daniel.cotter@stanford.edu 1649351277789 Stanford TMC cm 180.3 1746705753062 HuBMAP Intoxication White Male kg 80.0
|
|
253
|
+
5c720a99748dd7458886b17462efe30a HBM969.NGFR.863 years 24.5 kg/m2 35.0 Adam Kagel ackagel@stanford.edu 1620778863450 Stanford RTI 1746723989130 HuBMAP Pre-eclampsia Unknown Female
|
|
254
|
+
ff8e826009c339b73d142f4699d3b714 HBM444.ZRXP.967 years 24.8 kg/m2 36.5 Adam Kagel ackagel@stanford.edu 1620779032524 Not Hispanic or Latino Stanford RTI 1746713174318 HuBMAP Black or African American Female Smoker
|
|
255
|
+
912da557e34ead1d62968f4336504483 HBM737.KTDT.974 years 23.1 kg/m2 27.1 Adam Kagel ackagel@stanford.edu 1620778947539 Not Hispanic or Latino Stanford RTI 1746718779495 HuBMAP Black or African American Female
|
|
256
|
+
f815e75f1906dcf40ac7205219083ce2 HBM974.CPMK.889 years 16.4 Adam Kagel ackagel@stanford.edu 1620778676788 Stanford RTI 1730473512016 HuBMAP Asian Female
|
|
257
|
+
4dd3bf97557acb0afee48d1a51677d03 HBM565.QQGJ.494 Blood Type O years 11.0 kg/m2 16.2 Anoxia Marda Jorgensen marda@ufl.edu 1603121964731 Accident University of Florida TMC cm 147.0 % 45.0 1746715340615 HuBMAP Asphyxiation Cardiac Arrest White Male kg 35.0
|
|
258
|
+
bf0f045b9a16fc742c2fee00343ce920 HBM872.VXSV.245 years 54.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245354490 Fitzpatrick Skin Type V General Electric RTI 1744999293886 HuBMAP Unknown Female
|
|
259
|
+
277ba910b00771a81a608846ba883e31 HBM565.TRST.423 Blood Type AB years 24.0 kg/m2 39.71 Anoxia Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1708096632837 Motor vehicle accident University of Rochester Medical Center TMC cm 163.0 1744842200088 HuBMAP Blunt Injury Hyperlipidimia Black or African American Female kg 105.0
|
|
260
|
+
493583cea487875f4964ae6dd3431762 HBM432.GRKF.978 years 32.0 kg/m2 26.0 Valentina Stanley vstanley@ucsd.edu 1645220420762 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 165.1 1746712944334 HuBMAP White Female Non-smoker, Non-drinker kg 70.9
|
|
261
|
+
36736633f87c9c5b8a1f50371e7a7052 HBM769.KPJF.673 Blood Type O years 54.0 kg/m2 53.0 Anoxia Yiing Lin liny@wustl.edu 1646671243846 Stanford TMC cm 157.5 1746719328491 HuBMAP Intoxication Hypertension, Type 2 Diabetes Mellitus Black or African American Female kg 131.6
|
|
262
|
+
197e98c4bbd92ece524ed18026acfbc7 HBM894.PKMC.242 years 19.0 kg/m2 27.7 Amanda Knoten aknoten@wustl.edu 1652116000041 Hispanic or Latino University of California San Diego TMC 1746722923283 HuBMAP Unknown Male
|
|
263
|
+
75dfb1e702f1eaa85471687de07da6e6 HBM256.BRQS.425 years 22.0 Amanda Knoten aknoten@wustl.edu 1652115444114 University of California San Diego TMC 1744912016030 HuBMAP Black or African American Male
|
|
264
|
+
ff831c86a141380f572fa9a2ba7cae52 HBM679.FLZF.446 years 25.0 Amanda Knoten aknoten@wustl.edu 1652388229603 University of California San Diego TMC 1744911202446 HuBMAP White Female
|
|
265
|
+
fce59fd4f593570863759e8dd74ba8c1 HBM374.HGBL.437 years 29.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099264649 General Electric RTI cm 167.64 1770387506939 HuBMAP Black or African American Female kg 77.27
|
|
266
|
+
98a96594fc5d5773262269677af6b494 HBM248.VCKH.867 years 62.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099262095 General Electric RTI cm 162.56 1770387469824 HuBMAP Black or African American Female kg 75.0
|
|
267
|
+
7ef4a12fa8d618c7d8b5cccea32076d4 HBM634.WSFM.969 years 27.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099265696 General Electric RTI cm 160.02 1770387521295 HuBMAP Black or African American Female kg 115.45
|
|
268
|
+
867e971167a7bf1697d6436fd538dade HBM447.KBJP.989 years 31.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099269450 General Electric RTI cm 167.64 1770387576906 HuBMAP White Female kg 66.36
|
|
269
|
+
1b25bede0f94740145358048e5f42fd4 HBM465.FHMF.733 years 65.0 kg/m2 25.0 Amanda Knoten aknoten@wustl.edu 1681765698008 Not Hispanic or Latino Washington University Kidney TMC 1744583489243 HuBMAP White Male
|
|
270
|
+
dbba708a9cb123cab259a92dc80406a2 HBM498.DVTM.345 years 60.0 kg/m2 48.71 Amanda Knoten aknoten@wustl.edu 1681765413937 Washington University Kidney TMC 1760547731344 HuBMAP White Male
|
|
271
|
+
06b8157d8ef3dd7fa2f7b432df9137c7 HBM465.HKXW.235 Blood Type O years 40.0 kg/m2 27.3 Valentina Stanley vstanley@ucsd.edu 1693235650553 Hispanic or Latino weeks 39.0 TMC - University of California San Diego focusing on female reproduction cm 165.1 1746713484672 HuBMAP Salpingectomy, Cesarian section Other Race Rh positive Female Non-smoker kg 75.0
|
|
272
|
+
d0520596265beb14ad35ea7f270b1fc4 HBM473.ZLHS.776 Blood Type A years 39.0 kg/m2 30.9 Valentina Stanley vstanley@ucsd.edu 1693235659932 Not Hispanic or Latino weeks 39.3 TMC - University of California San Diego focusing on female reproduction cm 152.4 1746713591868 HuBMAP Salpingectomy, Cesarian section Asian Rh positive Female Non-smoker kg 71.82
|
|
273
|
+
6c119b81a562abb8bf9e9c00ee7a35b8 HBM598.PSQG.757 years 54.0 kg/m2 63.0 Amanda Knoten aknoten@wustl.edu 1681842815068 Not Hispanic or Latino Washington University Kidney TMC 1744583335447 HuBMAP Black or African American Male
|
|
274
|
+
505595ac91e4d9ddb613413037ba160f HBM246.BZJP.256 Blood Type O years 34.0 kg/m2 28.1 Valentina Stanley vstanley@ucsd.edu 1693235653152 Not Hispanic or Latino weeks 39.0 TMC - University of California San Diego focusing on female reproduction cm 175.26 1746700491217 HuBMAP Salpingectomy, Cesarian section White Rh negative Female Former smoker kg 86.36
|
|
275
|
+
847d7da6909778172dea47543f236cb1 HBM423.QXZJ.226 years 36.0 kg/m2 34.3 Valentina Stanley vstanley@ucsd.edu 1693235651860 Not Hispanic or Latino weeks 38.7 TMC - University of California San Diego focusing on female reproduction cm 162.56 1746707415606 HuBMAP COVID-19, Cesarian section, Salpingectomy Black or African American Female Non-smoker kg 90.91
|
|
276
|
+
a9c2ea2bd3106f142edf420dc02cdddd HBM994.NXZC.854 Blood Type O years 25.0 kg/m2 30.2 Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1625799780076 University of California San Diego TMC cm 166.0 1772807168605 HuBMAP Drug overdose Acute kidney injury, Rhabdomyolysis, Hypoxic brain injury Pathology note White Rh positive Female Illicit drug use, Marijuana use kg 83.2
|
|
277
|
+
19e78333a8f94919b10fdf07006129a1 HBM923.QNCJ.995 years 74.0 kg/m2 28.9 Jamie Allen jamie.l.allen@vanderbilt.edu 1630012495108 Vanderbilt TMC cm 172.7 1771527412412 HuBMAP White Male kg 86.2
|
|
278
|
+
61948ab02c6e4849c2522d953694df5d HBM742.LSPH.793 years 57.0 kg/m2 36.5 Head trauma Amanda Knoten aknoten@wustl.edu 1638297246603 University of California San Diego TMC cm 172.7 1746718815091 HuBMAP Coronary Heart Disease, Hypertension, Hyperlipidimia White Male Smoker kg 108.9
|
|
279
|
+
debbf2a38d728f5abcf8db89a43f3309 HBM476.GSMT.896 years 38.0 Ting Peng pengt1@chop.edu 1703275099170 Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273987586 HuBMAP Unknown Male
|
|
280
|
+
272fa064d5e8c89d3e7a5846a9b670dc HBM486.BBQB.858 years 51.0 kg/m2 42.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1708973797454 Vanderbilt TMC cm 172.7 1771527592762 HuBMAP Obesity, Cancer White Female kg 126.1
|
|
281
|
+
2ef76fe31f322fb2349e97eb8ee549e8 HBM678.JKBB.893 Blood Type O years 18.0 kg/m2 27.1 Head trauma Marda Jorgensen marda@ufl.edu 1572361717580 Motor vehicle accident University of Florida TMC cm 182.9 % 27.0 1746718940961 HuBMAP Blunt Injury Black or African American Rh positive Male kg 90.7
|
|
282
|
+
9cbc3c625b43f2873fcff599d909f4d8 HBM273.NCFF.979 years 46.0 kg/m2 30.0 Amanda Knoten aknoten@wustl.edu 1673476376642 Washington University Kidney TMC 1744583269808 HuBMAP White Male
|
|
283
|
+
4b257b9c1758a98af262c57bc0caa726 HBM549.RJKF.748 Blood Type O years 18.0 kg/m2 25.5 Head trauma Marda Jorgensen marda@ufl.edu 1573664183586 Motor vehicle accident University of Florida TMC cm 178.1 1746715172618 HuBMAP Blunt Injury White Male Smoker, Heavy drinker kg 80.9
|
|
284
|
+
a4989d3a5aceca977e232224143cb0f8 HBM368.WSHR.356 years 31.0 kg/m2 32.6 Jamie Allen allenj2@vanderbilt.edu 1574712998651 Vanderbilt TMC cm 180.3 1746706282317 HuBMAP White Male kg 106.1
|
|
285
|
+
f0aa7e5d01c0d40f0b284cbf85eb8d03 HBM492.JRZX.537 Blood Type A years 55.0 kg/m2 32.2 Anoxia Yiing Lin liny@wustl.edu 1612991364239 Suicide California Institute of Technology TMC cm 175.3 % 80.0 1746714526944 HuBMAP Asphyxiation Cardiac Arrest, Hypertension White Female Smoker, Heavy drinker kg 99.0
|
|
286
|
+
9425aac9f557431786cfffbd6af985a4 HBM486.QQFH.565 years 66.0 kg/m2 31.3 Jamie Allen allenj2@vanderbilt.edu 1577420519555 Vanderbilt TMC cm 160.0 1746714448431 HuBMAP Hypertension, Coronary Artery Disease, Gastrointestinal disease, Cancer White Female kg 80.0
|
|
287
|
+
e0176e0fc05285de9c79eafed45dad7f HBM564.MCFS.848 Blood Type B years 14.0 kg/m2 19.7 Anoxia Marda Jorgensen marda@ufl.edu 1575491831259 Natural causes University of Florida TMC cm 152.0 % 58.0 1746715291183 HuBMAP Asphyxiation Cardiac Arrest Black or African American Female kg 45.6
|
|
288
|
+
b5b4de30c90e4cb3def65407292942e9 HBM853.HXBK.427 years 30.0 kg/m2 34.9 Anoxia STEPHEN FISHER safisher@sas.upenn.edu 1660231584625 Natural causes TMC - University of Pennsylvania cm 185.42 % 18.0 1746721286951 HuBMAP Cardiovascular Type 1 Diabetes Mellitus, Diabetic ketoacidosis, Sepsis due to E. coli, Depression, Urinary Tract Infection, Pyelonephritis, Chronic Low Back Pain, Discitis, Osteomyelitis , Abscess of Bartholin's gland White Female Smoker, Opioid dependency kg 120.0
|
|
289
|
+
96a2057079b00db6de02905feea8bd12 HBM697.XFCZ.924 years 44.0 kg/m2 30.5 Head trauma Christine Briggs christine_briggs@hms.harvard.edu 1626269121629 Accident EXT - Human Cell Atlas 1746718544928 Human Cell Atlas Blunt Injury Unknown Male Smoker, Heavy drinker
|
|
290
|
+
b2c75c96558c18c9e13ba31629f541b6 HBM369.SGNG.277 years 41.0 kg/m2 37.1 Cerebrovascular accident Christine Briggs christine_briggs@hms.harvard.edu 1626274619453 Natural causes EXT - Human Cell Atlas 1746706311633 Human Cell Atlas Intracranial hemorrhage White Female Smoker
|
|
291
|
+
0739c6eb8d0d51bfd244e3d5afb00aab HBM584.TVKC.257 years 45.0 kg/m2 22.6 Diane Salamon salamond@wustl.edu 1577729272165 University of California San Diego TMC cm 177.8 1746715778025 HuBMAP Gastrointestinal disease White Female kg 71.6
|
|
292
|
+
e742ac485a0614e4114a26886ed0b444 HBM773.MKPP.732 years 69.0 kg/m2 49.2 Diane Salamon salamond@wustl.edu 1602794816321 University of California San Diego TMC cm 160.0 1746719359599 HuBMAP Hypertension White Female kg 126.0
|
|
293
|
+
920461953411feff2359ad62cfbe94ac HBM487.PCNK.738 years 41.0 Alex Kong alkong@stanford.edu 1742256560554 Stanford University Bone Marrow TMC 1746027269356 HuBMAP Unknown Female
|
|
294
|
+
505a610222e97637ce2b7ee1e610680e HBM994.MDQD.742 years 38.0 Alex Kong alkong@stanford.edu 1742257445590 Stanford University Bone Marrow TMC 1746027489764 HuBMAP Unknown Male
|
|
295
|
+
b36f6cfd1409e4ebfc3736f3c13d4338 HBM472.MPMH.535 years 63.0 Ting Peng pengt1@chop.edu 1735673372777 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274094109 HuBMAP White Female
|
|
296
|
+
fa643de6cbf12fdf706380f0a856f4d5 HBM438.GQNG.748 years 38.0 Alex Kong alkong@stanford.edu 1742257615061 Stanford University Bone Marrow TMC 1746027646850 HuBMAP Unknown Female
|
|
297
|
+
57667ed3ec9a95e83403abcc70c2c3a3 HBM658.GTGV.567 years 57.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1692299776508 Vanderbilt TMC 1775092636502 HuBMAP Black or African American Female
|
|
298
|
+
e529283b57b0a45bc93c01cb76447a4e HBM288.DKTT.823 Blood Type A1 years 55.77 kg/m2 27.47 Anoxia Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1741614762976 Hispanic or Latino University of Rochester Medical Center TMC cm 182.0 1772813048818 HuBMAP Asphyxiation Hypoxic brain injury, Seasonal Allergies Pathology note White Male kg 91.0
|
|
299
|
+
aa97d20b4a8f3c1198826091bc5455d9 HBM679.GXQW.326 years 44.0 kg/m2 28.0 Jamie Allen allenj2@vanderbilt.edu 1575489189510 Vanderbilt TMC cm 160.0 1746718232422 HuBMAP Cancer White Female kg 71.7
|
|
300
|
+
282d80223fe5635b4c74afdbbce5f44f HBM672.HSNT.629 years 62.0 kg/m2 45.5 Jamie Allen allenj2@vanderbilt.edu 1577418353173 Vanderbilt TMC cm 180.3 1746718090546 HuBMAP Hypertension, Coronary Artery Disease White Male kg 147.9
|
|
301
|
+
503e0659871ff27b4006e7100237ebe6 HBM462.FQCK.525 years 84.0 kg/m2 26.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1689351254361 Vanderbilt TMC cm 188.0 1771527484195 HuBMAP Renal cell carcinoma White Male kg 92.9
|
|
302
|
+
2076f3657338d3185f0ca74e8bbccc35 HBM668.BQBD.596 years 36.0 kg/m2 27.4 Jamie Allen jamie.l.allen@vanderbilt.edu 1690232688135 Vanderbilt TMC cm 173.7 1771527569619 HuBMAP Renal cell carcinoma, Gastroesophageal reflux disease, Anxiety, Depression White Female kg 82.6
|
|
303
|
+
1c1ed7307ed944ce9a3215394f5c3e9c HBM937.CMWT.993 years 65.0 kg/m2 40.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1689352000977 Vanderbilt TMC cm 167.6 1771527492776 HuBMAP Renal cell carcinoma, Hypertension, Type 2 Diabetes Mellitus, Obesity Black or African American Female kg 114.3
|
|
304
|
+
a288207cce58e2790fc35d8ab7d8a0e5 HBM228.QKJR.399 years 77.0 kg/m2 28.3 Jamie Allen jamie.l.allen@vanderbilt.edu 1690232027241 Vanderbilt TMC cm 172.2 1771527553727 HuBMAP Renal cell carcinoma, Hypothyroidism, Type 2 Diabetes Mellitus White Female kg 84.4
|
|
305
|
+
ff929a66e6846a3021c9efb8d71fed9b HBM636.KHQF.377 years 64.0 kg/m2 27.5 Jamie Allen jamie.l.allen@vanderbilt.edu 1689368528452 Vanderbilt TMC cm 170.2 1771527507943 HuBMAP Renal cell carcinoma, Type 2 Diabetes Mellitus, Hypertension White Male kg 79.8
|
|
306
|
+
06ce4ac9632a3f861913b51a9b1ad06d HBM485.HTBW.247 years 57.0 kg/m2 33.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1601493638910 Vanderbilt TMC cm 165.1 1746717221833 HuBMAP Hypertension, Coronary Artery Disease, Gastrointestinal disease White Female Smoker kg 91.6
|
|
307
|
+
2f3ac658dc81a1e5ad7d855f3c212a07 HBM642.BTDB.897 years 68.0 kg/m2 33.8 Jamie Allen jamie.l.allen@vanderbilt.edu 1690319412360 Vanderbilt TMC cm 154.9 1771527585514 HuBMAP Renal cell carcinoma, Type 2 Diabetes Mellitus, Obesity White Female kg 81.2
|
|
308
|
+
55797ef7f2be373b3781630be95d01b1 HBM259.SNDB.787 years 56.0 kg/m2 25.2 Jamie Allen jamie.l.allen@vanderbilt.edu 1628630205777 Vanderbilt TMC 1746704535188 HuBMAP White Male
|
|
309
|
+
a523307d64ecee4c3cae5e59cf68c7d1 HBM496.BKTT.757 years 67.0 kg/m2 27.4 Jamie Allen jamie.l.allen@vanderbilt.edu 1628525070885 Vanderbilt TMC cm 157.5 1746610445101 HuBMAP White Female kg 68.0
|
|
310
|
+
4cdbccaf4ab1871e7c049dd50585eb65 HBM723.QZBS.682 years 43.0 kg/m2 64.1 Jamie Allen jamie.l.allen@vanderbilt.edu 1627585037865 Vanderbilt TMC 1746718643589 HuBMAP White Female
|
|
311
|
+
dc32c49414c71ac8f7528e9219552464 HBM697.MMTX.669 years 70.0 kg/m2 24.8 Jamie Allen jamie.l.allen@vanderbilt.edu 1628017608546 Vanderbilt TMC 1746731861267 HuBMAP White Male
|
|
312
|
+
e53072f540ac2013342a2d89d9067e3d HBM882.QZZZ.478 years 29.0 kg/m2 32.5 Valentina Stanley vstanley@ucsd.edu 1645220328070 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 172.7 1746722099894 HuBMAP White Female Non-smoker, Non-drinker kg 97.3
|
|
313
|
+
23ca98ea477a00793a8d8b958e48b510 HBM863.GLVD.622 years 47.0 kg/m2 30.8 Elizabeth Neumann neumane@vanderbilt.edu 1572634352923 Vanderbilt TMC cm 177.8 1771526771480 HuBMAP White Male kg 97.5
|
|
314
|
+
88aba5d4d5940b31dab9072af559f94b HBM394.ZWGG.823 years 59.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1737756363257 Vanderbilt TMC 1775585029457 HuBMAP White Female
|
|
315
|
+
ac6489ecc04c2a55cc20ed237a69d84b HBM473.VLCG.245 years 36.2 kg/m2 25.0 Adam Kagel ackagel@stanford.edu 1620778876198 Not Hispanic or Latino Stanford RTI 1746713562567 HuBMAP White Female
|
|
316
|
+
356429aa137638d82d1f6a308d1b9f50 HBM696.JVJS.376 years 28.1 kg/m2 21.0 Adam Kagel ackagel@stanford.edu 1620778859450 Stanford RTI 1746718493074 HuBMAP Unknown Female
|
|
317
|
+
4057169be3621d56847d5148ce560877 HBM466.ZRTG.273 years 34.7 kg/m2 30.9 Adam Kagel ackagel@stanford.edu 1620779063525 Hispanic or Latino Stanford RTI 1746713509867 HuBMAP Unknown Female Smoker
|
|
318
|
+
d3ad6409d2ad37ef7dbcc90ccc199f68 HBM694.QDFG.746 Blood Type O years 78.0 kg/m2 35.1 Cerebrovascular accident Yiing Lin liny@wustl.edu 1579797666329 Natural causes Stanford TMC cm 180.3 % 100.0 1746725294217 HuBMAP Intracranial hemorrhage Hypertension, Coronary Artery Disease, Type 2 Diabetes Mellitus Black or African American Male kg 114.0
|
|
319
|
+
d386672d8d067ee117a086710cfbde5a HBM298.KGNJ.374 Blood Type O years 21.0 kg/m2 37.1 Head trauma Marda Jorgensen marda@ufl.edu 1603122484334 Motor vehicle accident University of Florida TMC cm 167.6 1746705792857 HuBMAP Blunt Injury Cardiac Arrest Black or African American Female kg 104.2
|
|
320
|
+
7be792ef793c14570e6bc043246d0bbc HBM662.SRTW.384 years 36.2 kg/m2 26.0 Adam Kagel ackagel@stanford.edu 1620778808611 Not Hispanic or Latino Stanford RTI 1746717651822 HuBMAP White Female
|
|
321
|
+
cf5e78b4471040ff4f1627cf139ca109 HBM543.NVJB.926 years 38.1 kg/m2 28.9 Adam Kagel ackagel@stanford.edu 1620778975108 Not Hispanic or Latino Stanford RTI 1746714810726 HuBMAP White Female Smoker, Methamphetamine use
|
|
322
|
+
a0e57dd83f11752476d622a64f495814 HBM445.JLWJ.478 years 28.2 kg/m2 20.7 Adam Kagel ackagel@stanford.edu 1620778835813 Not Hispanic or Latino Stanford RTI 1746713195379 HuBMAP White Female
|
|
323
|
+
f7b11d28e569e323eacc92cefc0bec24 HBM722.MGZD.359 years 36.0 kg/m2 45.5 Adam Kagel ackagel@stanford.edu 1620778710158 Stanford RTI 1746718569352 HuBMAP Native Hawaiian or Other Pacific Islander Female
|
|
324
|
+
142d18f0a749d3d02d8b1addbca15589 HBM275.QBCZ.562 Blood Type A years 54.0 kg/m2 20.5 Anoxia Daniel Cotter Daniel.cotter@stanford.edu 1649351465116 Stanford TMC cm 147.3 1746704883088 HuBMAP Cardiovascular Hypertension, Type 2 Diabetes Mellitus Black or African American Female kg 44.5
|
|
325
|
+
470a1e7efdf8b34273d553a03af95e29 HBM848.WNML.222 years 31.3 kg/m2 28.3 Adam Kagel ackagel@stanford.edu 1620778751074 Not Hispanic or Latino Stanford RTI 1746720664569 HuBMAP Black or African American Female
|
|
326
|
+
38587428db756f851c0cb5337f81405e HBM663.RMXR.635 years 22.5 kg/m2 23.8 Adam Kagel ackagel@stanford.edu 1620778941614 Hispanic or Latino Stanford RTI 1746717723035 HuBMAP Unknown Female
|
|
327
|
+
ae46bd4ea93de1139a2c5e9eebe401f3 HBM897.CMGC.655 years 64.0 Kyung Ahn AHN@chop.edu 1718044287091 TMC - Children's Hospital of Philadelphia 1774288055506 HuBMAP Unknown Male
|
|
328
|
+
32e2c2b8456624e40bcfc2aced7d08f2 HBM576.FRMZ.683 years 26.8 kg/m2 20.7 Adam Kagel ackagel@stanford.edu 1620778725565 Not Hispanic or Latino Stanford RTI 1746715406346 HuBMAP Black or African American Female
|
|
329
|
+
e186d3009fc4b69ba6fa1727bbfd2156 HBM589.ZQMP.997 years 23.5 kg/m2 19.0 Adam Kagel ackagel@stanford.edu 1620778804678 Stanford RTI 1746715801370 HuBMAP Asian Female
|
|
330
|
+
2eb51e23b47b639a3a726ad175b50a0b HBM287.NHFQ.865 years 54.0 Kyung Ahn AHN@chop.edu 1718132029360 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288113795 HuBMAP Black or African American Female
|
|
331
|
+
0d5b7e18929a81ea571f444d9d301a23 HBM894.PZGP.397 years 32.4 kg/m2 29.4 Adam Kagel ackagel@stanford.edu 1620779076656 Stanford RTI 1746722949139 HuBMAP Asian Female
|
|
332
|
+
29a385d01f8316404952d101bc4f16c5 HBM849.FBJV.474 Blood Type O years 23.8 kg/m2 21.3 Head trauma Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1625959567737 University of California San Diego TMC cm 188.0 1746720904177 HuBMAP Gunshot wound Meningitis White Male kg 75.3
|
|
333
|
+
f6aad3599c384bcec6c5216ccb46d13f HBM685.XXZC.263 years 26.8 kg/m2 22.6 Adam Kagel ackagel@stanford.edu 1620778926228 Not Hispanic or Latino Stanford RTI 1746718352829 HuBMAP White Female Smoker, Intravenous drug use
|
|
334
|
+
1dd8f2beaff92b4acd9a58d1bbe57125 HBM784.FZDK.735 years 33.3 kg/m2 27.3 Adam Kagel ackagel@stanford.edu 1620778604549 Hispanic or Latino Stanford RTI 1746719531644 HuBMAP Unknown Female
|
|
335
|
+
239e9468a163caab397d642847d5f893 HBM446.CSSP.335 Blood Type A1 years 22.0 kg/m2 20.15 STEPHEN FISHER safisher@sas.upenn.edu 1690981712791 Natural causes TMC - University of Pennsylvania cm 168.91 1746713248172 HuBMAP Cardiovascular White Rh positive Female Smoker, Alcohol use, Marijuana use kg 57.5
|
|
336
|
+
2fbcffe20abbb7b7d8efe3437e9d2811 HBM948.LPFP.523 years 51.0 kg/m2 40.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1601493535635 Vanderbilt TMC 1746723805972 HuBMAP White Female
|
|
337
|
+
e71689fb01e59f5f57cc3ec250ba9609 HBM274.TWRJ.896 Blood Type A1 years 29.0 kg/m2 31.71 Anoxia STEPHEN FISHER safisher@sas.upenn.edu 1690981686206 TMC - University of Pennsylvania cm 172.72 1746704778439 HuBMAP Drug overdose Asthma White Rh positive Female Smoker, Drug Abuse kg 94.6
|
|
338
|
+
710ccddb75bf16cb46fbdd8e882c3a71 HBM775.JDDD.365 years 31.0 kg/m2 25.4 Valentina Stanley vstanley@ucsd.edu 1645220452045 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 167.6 1746719421623 HuBMAP White Female Non-smoker, Alcohol use kg 71.5
|
|
339
|
+
61d69317ade415be73c74723114847bb HBM449.GTCG.426 years 66.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245353242 Fitzpatrick Skin Type II General Electric RTI 1744924448983 HuBMAP Unknown Male
|
|
340
|
+
0721f575bacb2afae07935f07b456c58 HBM724.WJQQ.227 Blood Type B years 51.0 kg/m2 30.1 Anoxia Yiing Lin liny@wustl.edu 1612991562675 Accident California Institute of Technology TMC cm 182.9 % 39.0 1746725328914 HuBMAP Drug intoxication Cardiac Arrest White Male Intravenous drug use kg 100.7
|
|
341
|
+
89637b7467883c4689f55c645a095420 HBM643.RGRZ.429 Blood Type A1 years 42.0 kg/m2 29.39 Cerebrovascular accident Marda Jorgensen marda@ufl.edu 1634133820296 Natural causes University of Florida TMC cm 147.0 % 59.0 1746717609184 HuBMAP Intracranial hemorrhage White Female kg 63.5
|
|
342
|
+
7b12f4f595083d2cba794e78e5c929f1 HBM889.RSJQ.447 Blood Type O years 25.0 kg/m2 23.6 Anoxia Yiing Lin liny@wustl.edu 1612991636613 Accident California Institute of Technology TMC cm 152.4 % 52.0 1746722586417 HuBMAP Cardiovascular Cardiac Arrest, Type 2 Diabetes Mellitus, Heart failure with reduced ejection fraction White Female kg 54.9
|
|
343
|
+
50523a03d5db833e196a8fddc8a8d235 HBM247.QRZQ.974 years 55.0 kg/m2 25.4 Jamie Allen allenj2@vanderbilt.edu 1577419092685 Vanderbilt TMC cm 167.6 1746703683471 HuBMAP Hypertension, Coronary Artery Disease, Cancer White Male kg 71.3
|
|
344
|
+
cd44c6f5270f322a987675dbaf90e0d6 HBM393.ZTJW.339 years 67.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1626277488309 Vanderbilt TMC 1744989156073 HuBMAP White Female
|
|
345
|
+
6a0d01e2b3c57632ef79886ba115c8de HBM427.FLPM.955 years 21.0 kg/m2 28.1 Anoxia Christine Briggs christine_briggs@hms.harvard.edu 1626275170267 Accident EXT - Human Cell Atlas 1746707599419 Human Cell Atlas Drug intoxication White Male Smoker, Heavy drinker, Intravenous drug use
|
|
346
|
+
7852152d702288d2ddc82c67ced9631e HBM527.VDJP.733 years 26.0 kg/m2 28.4 Cerebrovascular accident Christine Briggs christine_briggs@hms.harvard.edu 1626275569565 Natural causes EXT - Human Cell Atlas 1746714733065 Human Cell Atlas Intracranial hemorrhage Black or African American Male
|
|
347
|
+
e5d3c8ea4ce06c7f1bca2c6419f49346 HBM796.ZVVX.764 Blood Type O years 45.0 kg/m2 33.1 Anoxia Yiing Lin liny@wustl.edu 1607713619304 Suicide California Institute of Technology TMC cm 172.7 % 52.0 1746719840480 HuBMAP Asphyxiation Cardiac Arrest White Male kg 98.8
|
|
348
|
+
ec9c0939123f287d7394e8251780f220 HBM957.XGCL.285 Blood Type AB years 19.91 kg/m2 21.79 Anoxia Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1625958924757 University of California San Diego TMC cm 188.0 1772805709710 HuBMAP Drug overdose Gastrointestinal disease, Hypertension, Type 2 Diabetes Mellitus, Acute respiratory distress syndrome, Acute kidney injury, Brainstem death Pathology note White Male Alcohol use, Opioid dependency, Marijuana use kg 77.0
|
|
349
|
+
b98fceee74b721925c833424a5bd63d4 HBM428.GRPJ.489 Blood Type AB years 52.96 kg/m2 26.85 Cerebrovascular accident Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1634522034706 Natural causes University of California San Diego TMC cm 182.88 1772740913043 HuBMAP Intracranial hemorrhage Pathology note White Male Alcohol use kg 89.91
|
|
350
|
+
a4fb1606c5e3c491b5880862b48fafc5 HBM692.FRHS.655 years 41.0 kg/m2 30.0 Amanda Knoten aknoten@wustl.edu 1639165143878 University of California San Diego TMC cm 156.0 1746718456028 HuBMAP White Male kg 73.0
|
|
351
|
+
03544b68f2015a8ffaeaf3d7bba8b455 HBM394.VCLB.864 years 30.0 kg/m2 37.0 Valentina Stanley vstanley@ucsd.edu 1645220183516 Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 160.0 1746707331074 HuBMAP Other Race Female Former smoker, Non-drinker kg 95.0
|
|
352
|
+
950880df681892c864f2d4cad74e2fa4 HBM565.BXNJ.235 years 57.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099256088 General Electric RTI cm 177.8 1770387408469 HuBMAP Sun-exposed Site Black or African American Male kg 105.45
|
|
353
|
+
9bb730d334506c810500408c2016aeb2 HBM569.GPRT.686 years 56.0 kg/m2 30.9 Head trauma Merissa Olmer molmer@scripps.edu 1652214718336 TMC - University of Connecticut cm 182.88 1746715385245 HuBMAP White Male kg 103.64
|
|
354
|
+
9a365990ee2f87e6ae69a8240b4b3d4c HBM945.NTJB.992 years 42.0 kg/m2 37.9 Amanda Knoten aknoten@wustl.edu 1652387732650 University of California San Diego TMC 1746731909561 HuBMAP Black or African American Female
|
|
355
|
+
fef92e25b6f873787faf7004b392e9db HBM597.BMXP.272 years 59.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099257981 General Electric RTI cm 182.88 1770387420003 HuBMAP Sun-exposed Site Black or African American Unknown kg 122.73
|
|
356
|
+
351c6235d30d508cb8917a0e7ea493d7 HBM899.CNWN.842 years 66.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099257433 General Electric RTI cm 175.26 1771012605901 HuBMAP Sun-exposed Site Black or African American Male kg 86.36
|
|
357
|
+
65b5c190057d1e040e8162f9c2493b3b HBM878.XKBP.354 years 72.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1654099263012 General Electric RTI cm 160.02 1770387484064 HuBMAP Black or African American Female kg 126.0
|
|
358
|
+
b472e849d7575bbd4b781ea1a42d4733 HBM583.HKBX.967 years 46.0 kg/m2 28.0 Amanda Knoten aknoten@wustl.edu 1671744942291 Not Hispanic or Latino Washington University Kidney TMC 1744583413255 HuBMAP White Male
|
|
359
|
+
fde7ac63c666fdaebe21e187293a8685 HBM824.KJWW.778 years 27.0 kg/m2 33.8 Anoxia Merissa Olmer molmer@scripps.edu 1657222368235 TMC - University of Connecticut cm 175.26 1746719992939 HuBMAP Asthma, Autistic disorder White Female kg 104.09
|
|
360
|
+
3ede4d6098a8e4a92f130abd307f54dd HBM473.KRCC.582 years 46.0 Angela Kruse angela.kruse@vanderbilt.edu 1677270069032 Vanderbilt TMC 1744993528819 HuBMAP White Female
|
|
361
|
+
6f1471b5add99311b186a83f88290cc3 HBM999.THVL.594 years 45.0 Angela Kruse angela.kruse@vanderbilt.edu 1677269941802 Vanderbilt TMC 1744993449993 HuBMAP White Female
|
|
362
|
+
d1181c7847597e3df80e5cc6ce2062c1 HBM384.MWVJ.535 years 30.0 Angela Kruse angela.kruse@vanderbilt.edu 1677270159423 Vanderbilt TMC 1744993592582 HuBMAP White Male
|
|
363
|
+
3005e4fc651b3e0fca340dddd07dc647 HBM842.KLPP.244 years 78.0 kg/m2 18.0 Amanda Knoten aknoten@wustl.edu 1681844913373 Not Hispanic or Latino Washington University Kidney TMC 1744583593884 HuBMAP White Female
|
|
364
|
+
a458553308f1db741f6f2d9c0cfa45d0 HBM854.QXTP.375 Blood Type A years 40.0 kg/m2 36.3 Valentina Stanley vstanley@ucsd.edu 1693235656192 Not Hispanic or Latino weeks 39.1 TMC - University of California San Diego focusing on female reproduction cm 165.1 1746721349619 HuBMAP Salpingectomy, Cesarian section White Rh positive Female Former smoker kg 99.09
|
|
365
|
+
fd67044e2cad534967739d80ed157983 HBM799.LQSZ.925 years 70.0 kg/m2 33.2 Jamie Allen jamie.l.allen@vanderbilt.edu 1690232387653 Vanderbilt TMC cm 177.8 1771527560833 HuBMAP Hypertension, Type 2 Diabetes Mellitus, Obesity, Cancer White Male kg 104.8
|
|
366
|
+
a00d923d527e06100f1cb03855d32303 HBM643.CNND.374 years 68.0 Ting Peng pengt1@chop.edu 1749500382304 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274127533 HuBMAP White Male
|
|
367
|
+
41d52d2ee8b93b9c352acd69434a6f4b HBM864.XRGJ.897 years 34.0 kg/m2 22.5 Valentina Stanley vstanley@ucsd.edu 1645220120963 Not Hispanic or Latino TMC - University of California San Diego focusing on female reproduction cm 165.1 1746721561555 HuBMAP White Female Non-smoker, Non-drinker kg 61.3
|
|
368
|
+
ab8258a97e0820c294d1f0ba2d261f61 HBM984.MHHN.738 Blood Type O years 66.0 kg/m2 29.1 Cerebrovascular accident Diane Salamon salamond@wustl.edu 1577730811645 Natural causes University of California San Diego TMC cm 177.8 1746724183968 HuBMAP Intracranial hemorrhage Gastrointestinal disease White Male kg 91.9
|
|
369
|
+
3439871e0617807d2711465a249af9a5 HBM464.FJWN.992 Blood Type A years 28.0 kg/m2 19.2 Head trauma Diane Salamon salamond@wustl.edu 1577727395477 Motor vehicle accident University of California San Diego TMC cm 188.0 1746713449280 HuBMAP Blunt Injury Black or African American Rh positive Male Smoker kg 68.0
|
|
370
|
+
071120c935a18ff4f233f275bf9d7c69 HBM554.MDRQ.975 Blood Type O years 41.0 kg/m2 35.6 Valentina Stanley vstanley@ucsd.edu 1693235654642 Hispanic or Latino weeks 39.0 TMC - University of California San Diego focusing on female reproduction cm 160.02 1746715203318 HuBMAP Gestational diabetes mellitus class A1, Salpingectomy, Cesarian section White Rh positive Female Non-smoker kg 91.36
|
|
371
|
+
5c4208e2f2715c56ee8dc82b5f1b90c0 HBM277.XCLT.589 years 63.0 kg/m2 36.5 Diane Salamon salamond@wustl.edu 1602792297341 University of California San Diego TMC cm 173.0 1746705105523 HuBMAP White Female Smoker kg 109.0
|
|
372
|
+
4086dd53a9e443f4ab57207ce77402d2 HBM443.VFRD.453 Blood Type O years 33.0 kg/m2 35.9 Anoxia Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1625942424057 Natural causes University of California San Diego TMC cm 170.18 1772803898643 HuBMAP Cardiovascular Cerebrovascular accident, History of tracheostomy, Ventilator dependency, Kidney disease, Cardiac Arrest, Hypoxic ischemic encephalopathy, Ateriovenous malformation, Feeding assisted Pathology note Black or African American Rh positive Female kg 103.87
|
|
373
|
+
d15df1013d0948b4416a88fec00f5385 HBM932.JNVS.672 Blood Type B years 59.0 kg/m2 22.57 Cerebrovascular accident Gloria Pryhuber gloria_pryhuber@urmc.rochester.edu 1653274834287 University of California San Diego TMC cm 176.0 1746723289263 HuBMAP Intracranial hemorrhage Hypertension White Rh positive Male kg 69.9
|
|
374
|
+
25f45ca43f25964f7f7071c30e57870a HBM847.NCLB.799 years 76.0 kg/m2 26.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1629836089903 Vanderbilt TMC cm 152.4 1771527390263 HuBMAP White Female kg 62.1
|
|
375
|
+
4021ec8b349b3eb2ddceef96dcd22251 HBM395.HCTC.292 years 46.0 kg/m2 22.3 Jamie Allen allenj2@vanderbilt.edu 1577421552405 Vanderbilt TMC cm 175.2 1746707378815 HuBMAP Cancer White Male kg 68.5
|
|
376
|
+
a767eb82765b1a96a69e6fe28b6a387d HBM352.MHHS.224 years 56.0 kg/m2 45.5 Jamie Allen allenj2@vanderbilt.edu 1580318777026 Vanderbilt TMC cm 175.2 1746706161112 HuBMAP Cancer White Female kg 139.6
|
|
377
|
+
e274c604eb0a2af342c5be912c106921 HBM956.ZXCW.333 years 82.0 kg/m2 29.2 Jamie Allen jamie.l.allen@vanderbilt.edu 1689345480018 Vanderbilt TMC cm 162.6 1771527474514 HuBMAP Renal cell carcinoma, Hypertension, Breast cancer White Female kg 77.3
|
|
378
|
+
59db6e609132322b585db60db973da7a HBM259.FGLV.394 years 60.0 kg/m2 42.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1649091819053 Vanderbilt TMC cm 167.0 1771527442372 HuBMAP White Female kg 118.8
|
|
379
|
+
ae5a8653e8aa11aaf5a9a9ec829077f9 HBM656.TWDD.969 years 60.0 kg/m2 30.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1689621173765 Vanderbilt TMC cm 175.3 1771527523979 HuBMAP Renal cell carcinoma, Hypertension, Myocardial infarction, Chronic Obstructive Lung Disease, Hyperlipidimia, Obesity White Male kg 92.1
|
|
380
|
+
f7014a4d352206fe5a6448ae2db99090 HBM267.JRRC.247 years 39.0 kg/m2 33.5 Jamie Allen jamie.l.allen@vanderbilt.edu 1689621823712 Vanderbilt TMC cm 180.3 1771527531178 HuBMAP Renal cell carcinoma, Anxiety, Type 2 Diabetes Mellitus White Male kg 108.9
|
|
381
|
+
3fe9f73cbde5ab35d99d78af950c7096 HBM895.DGFL.528 years 59.0 kg/m2 30.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1689624343979 Vanderbilt TMC cm 185.4 1771527546221 HuBMAP Renal cell carcinoma, Gastroesophageal reflux disease, Small airways disease, Obesity White Male kg 103.0
|
|
382
|
+
1379d64e1c1ada2bce708ba44520ffb3 HBM883.LHNK.872 years 44.0 Haitham Mohamed Abdelazim haitham.mohameda@ufl.edu 1698763352196 mL/min/1.73m2 89.09 TC - University of Florida 1744994605015 HuBMAP White mg/dL 0.83 Female
|
|
383
|
+
fbb4300389de57f55d673ffc4ad49dac HBM445.LCFQ.497 years 49.0 kg/m2 26.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1708984747789 Vanderbilt TMC cm 175.3 1771527617772 HuBMAP Hypertension, Cancer Black or African American Male kg 81.6
|
|
384
|
+
f079501ef0915131c8b7eb66ab2e4800 HBM448.VMXG.726 years 82.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115991788 TTD - University of San Diego and City of Hope 1744996534732 HuBMAP Pathology note White Female
|
|
385
|
+
75535464737ac44afb3313d77de38a56 HBM763.FTCX.279 years 71.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712115554890 TTD - University of San Diego and City of Hope 1744995195957 HuBMAP Pathology note White Male
|
|
386
|
+
a11bcc085cad4866265fcf88125662a2 HBM376.DFHT.633 years 32.0 Ting Peng pengt1@chop.edu 1735673091541 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274418725 HuBMAP Black or African American Male
|
|
387
|
+
71430256deffb4bdcc11ece804abb4f7 HBM723.QFWZ.837 years 34.0 Alex Kong alkong@stanford.edu 1742238998908 Stanford University Bone Marrow TMC 1746027186774 HuBMAP Unknown Female
|
|
388
|
+
cacdc54c6cc71dec05297db461f9cf1f HBM588.GVLV.225 years 32.0 Alex Kong alkong@stanford.edu 1742257215456 Stanford University Bone Marrow TMC 1746027415747 HuBMAP Unknown Female
|
|
389
|
+
d225b5069257c493dbf91416f3650ff2 HBM468.QLVJ.992 Blood Type O years 8.99 kg/m2 20.5 Head trauma Anthony Corbett Anthony_Corbett@URMC.Rochester.edu 1706019673905 University of Rochester Medical Center TMC cm 139.7 1746713541981 HuBMAP Motor vehicle accident Black or African American Male kg 40.0
|
|
390
|
+
d7c90f1fe1ae702df845e29da648854a HBM639.MJWP.689 years 59.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116359190 TTD - University of San Diego and City of Hope 1744996650496 HuBMAP Pathology note White Female
|
|
391
|
+
0abacde2443881351ff6e9930a706c83 HBM358.KMTL.795 years 90.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116478460 TTD - University of San Diego and City of Hope 1744996709818 HuBMAP Pathology note White Male
|
|
392
|
+
24e6946400b65468a962f1d96af2acf9 HBM379.BFST.275 years 79.0 Apolipoprotein E phenotype Xingzhao Wen xzwen@ucsd.edu 1712116157231 TTD - University of San Diego and City of Hope 1744996583240 HuBMAP Pathology note White Male
|
|
393
|
+
954e2270533ddc6480f9d07d1ea53cef HBM559.FGQF.668 years 30.0 Ting Peng pengt1@chop.edu 1733325557758 Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273967124 HuBMAP Unknown Female
|
|
394
|
+
2cdf5c619e00a8a599ba1c62781bbb1b HBM242.BPXR.698 years 54.0 Ting Peng pengt1@chop.edu 1735335800776 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273854788 HuBMAP White Female
|
|
395
|
+
222776d233f66a72cf08cb4080229ec8 HBM633.VXDV.954 years 0.0 Alex Kong alkong@stanford.edu 1742256225182 Stanford University Bone Marrow TMC 1765551245334 HuBMAP Unknown Unknown
|
|
396
|
+
f3bcff83829bb2163a96c39e98e94e0a HBM463.QMHS.574 years 31.0 Alex Kong alkong@stanford.edu 1742257592490 Stanford University Bone Marrow TMC 1746027608485 HuBMAP Unknown Female
|
|
397
|
+
18887a1ace6ba3d66fb3b503f4a2607e HBM576.KVWN.846 years 36.0 Alex Kong alkong@stanford.edu 1742257857271 Stanford University Bone Marrow TMC 1746027728485 HuBMAP Unknown Male
|
|
398
|
+
2986800a42479b52e7d342241be3b40a HBM297.JSCG.848 years 20.0 Ting Peng pengt1@chop.edu 1749499732772 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774273953671 HuBMAP White Male
|
|
399
|
+
24fea487d771b385cfd160f711ac726f HBM286.NBZW.885 years 47.0 Ting Peng pengt1@chop.edu 1749499936003 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274067878 HuBMAP Black or African American Male
|
|
400
|
+
40879b037360baf5021ddba9a4b95205 HBM252.KFZH.732 years 66.0 Ting Peng pengt1@chop.edu 1749500033119 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774274013979 HuBMAP White Male
|
|
401
|
+
96a667104f92a38f5d4f97c38d94e738 HBM758.JRSC.348 years 66.0 kg/m2 32.2 Jamie Allen allenj2@vanderbilt.edu 1572635259132 Vanderbilt TMC cm 158.8 1746719041874 HuBMAP Cancer White Female kg 81.5
|
|
402
|
+
2b715f960c8aad07508e8d706d1a799e HBM749.NHZH.284 years 69.0 Elizabeth Neumann elizabeth.neumann@Vanderbilt.Edu 1611332333354 Vanderbilt TMC 1744979617816 HuBMAP White Male
|
|
403
|
+
fbe55a20368647cd1b05cf7abd4dce70 HBM253.KBSM.226 years 78.0 kg/m2 23.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1626981289784 Vanderbilt TMC 1746704509201 HuBMAP White Female
|
|
404
|
+
bfbcdea6a2b709fd0d3aa71b5a47d924 HBM269.TNNP.865 years 20.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1601494032691 Vanderbilt TMC 1744989045774 HuBMAP Black or African American Male
|
|
405
|
+
369899576f1c7a352593e02265f3214b HBM693.LKTD.978 years 77.0 kg/m2 32.7 Jamie Allen jamie.l.allen@vanderbilt.edu 1690319134403 Vanderbilt TMC cm 165.1 1771527577449 HuBMAP Renal cell carcinoma, Hypertension, Obesity White Female kg 89.1
|
|
406
|
+
2510644405f4e7fd86d31af0001b840f HBM322.KQBK.747 years 56.0 kg/m2 32.5 Jamie Allen allenj2@vanderbilt.edu 1574712395359 Vanderbilt TMC cm 167.6 1746706045362 HuBMAP Hypertension, Coronary Artery Disease, Cancer White Male kg 91.2
|
|
407
|
+
6f3a5cf9f32553e5e25f4c30c7ccec18 HBM786.ZGPD.766 years 72.0 kg/m2 40.6 Jamie Allen jamie.l.allen@vanderbilt.edu 1627068030865 Vanderbilt TMC 1746719678738 HuBMAP White Male
|
|
408
|
+
028f8bb629f5a65f771be4d05ab57914 HBM994.BBMC.798 years 68.0 kg/m2 25.1 Jamie Allen jamie.l.allen@vanderbilt.edu 1628716618828 Vanderbilt TMC cm 177.8 1746610604753 HuBMAP White Male kg 79.4
|
|
409
|
+
461bbfdc353a2673e381f632510b0f17 HBM456.FDTP.455 years 45.0 kg/m2 29.0 Elizabeth Neumann neumane@vanderbilt.edu 1572633264622 Vanderbilt TMC cm 147.3 1771526715836 HuBMAP White Female kg 62.9
|
|
410
|
+
6a874a798be05583b30f8d24e6b6a7f8 HBM666.NCST.534 years 65.0 Jamie Allen jamie.l.allen@vanderbilt.edu 1738619680871 Vanderbilt TMC 1775585395859 HuBMAP White Male
|
|
411
|
+
76aaa3fda1464e4aa6333e2675350831 HBM523.ZGJS.935 years 28.0 kg/m2 26.6 Adam Kagel ackagel@stanford.edu 1620778908175 Not Hispanic or Latino Stanford RTI 1746714653164 HuBMAP White Female
|
|
412
|
+
393fc3d44852419d81262c4d1eaa0c04 HBM862.KPDG.356 years 36.1 kg/m2 26.8 Adam Kagel ackagel@stanford.edu 1620779109995 Not Hispanic or Latino Stanford RTI 1746721413124 HuBMAP Black or African American Female
|
|
413
|
+
0db3da0f7698a7380e49cd0adbccd18a HBM842.QMPX.273 years 23.3 kg/m2 32.0 Adam Kagel ackagel@stanford.edu 1620778781187 Not Hispanic or Latino Stanford RTI 1746720405711 HuBMAP Pre-eclampsia Black or African American Female Smoker
|
|
414
|
+
dab3ca946f147660e64df76eeb9a3019 HBM453.WKTM.785 years 24.5 kg/m2 20.5 Adam Kagel ackagel@stanford.edu 1620778900984 Stanford RTI 1746731810699 HuBMAP Asian Female
|
|
415
|
+
e4e4ab805cb51f2c7f3f1f7010220598 HBM788.DGPQ.568 years 52.0 kg/m2 23.4 Liz McDonough elizabeth.mcdonough@ge.com 1607626870715 General Electric RTI 1746719701900 HuBMAP White Female
|
|
416
|
+
e5bee626ee837b90a013a46b45153ff5 HBM965.LDNX.672 years 39.6 kg/m2 23.8 Adam Kagel ackagel@stanford.edu 1620779088237 Stanford RTI 1746723876065 HuBMAP Pre-eclampsia American Indian or Alaska native Female Smoker, Intravenous drug use
|
|
417
|
+
f84ff583687f3407636d8ce843b48ff0 HBM837.QTCQ.265 Blood Type O years 37.0 kg/m2 29.3 Cerebrovascular accident Yiing Lin liny@wustl.edu 1616352389733 Stanford TMC cm 177.8 1746720309817 HuBMAP Intracranial hemorrhage Hypertension White Male kg 92.5
|
|
418
|
+
5e759beddd9f293ce7a22ce1733460a9 HBM886.JKWV.686 years 33.8 kg/m2 29.0 Adam Kagel ackagel@stanford.edu 1620778988423 Not Hispanic or Latino Stanford RTI 1746722373840 HuBMAP Black or African American Female Smoker
|
|
419
|
+
848a39d6ec9a48cfaf9b6a9ed44868e2 HBM622.VVVG.797 years 20.1 kg/m2 20.8 Adam Kagel ackagel@stanford.edu 1620778701592 Not Hispanic or Latino Stanford RTI 1746715864190 HuBMAP Pre-eclampsia Black or African American Female Smoker
|
|
420
|
+
eb2be1700728f518ea6d322855082c2e HBM593.BTCL.868 years 34.9 kg/m2 22.0 Adam Kagel ackagel@stanford.edu 1620778854194 Stanford RTI 1746715824728 HuBMAP Asian Female
|
|
421
|
+
f1caa0dcc9eecceffd364c5be99744d2 HBM632.DRJB.548 years 28.4 kg/m2 47.9 Adam Kagel ackagel@stanford.edu 1620778880648 Not Hispanic or Latino Stanford RTI 1746716535368 HuBMAP Black or African American Female Smoker
|
|
422
|
+
5bea016355017b59418b7bc96fea059a HBM676.JJWB.334 years 27.1 kg/m2 43.0 Adam Kagel ackagel@stanford.edu 1620778818040 Stanford RTI 1746717986024 HuBMAP Unknown Female Smoker
|
|
423
|
+
50ab71df88367d35fc9055ce2ed6e3b7 HBM879.VGBG.979 years 66.0 Kyung Ahn AHN@chop.edu 1718045816462 Not Hispanic or Latino TMC - Children's Hospital of Philadelphia 1774288096801 HuBMAP Black or African American Female
|
|
424
|
+
56d58e095b39bace799a08131d331a99 HBM262.JGDG.897 years 53.0 kg/m2 37.2 Liz McDonough elizabeth.mcdonough@ge.com 1607625335638 General Electric RTI 1746704565453 HuBMAP White Female
|
|
425
|
+
86866bf2bceb5cb6e714259dc90a4c4c HBM489.VGLK.265 years 68.0 Kyung Ahn AHN@chop.edu 1718043649338 TMC - Children's Hospital of Philadelphia 1774288046829 HuBMAP Unknown Female
|
|
426
|
+
d723b8afda1146f1da0ff91bb5545952 HBM578.DSSX.692 years 15.7 kg/m2 30.3 Adam Kagel ackagel@stanford.edu 1620779098202 Stanford RTI 1746715426525 HuBMAP Asian Female Smoker
|
|
427
|
+
a3ab4491d04dff03fdd2cee5a2df70b3 HBM528.WJLC.564 Blood Type O years 44.0 kg/m2 25.9 Cerebrovascular accident Yiing Lin liny@wustl.edu 1571148119507 Natural causes California Institute of Technology TMC cm 167.6 % 88.0 1746714790824 HuBMAP Intracranial hemorrhage Hypertension, Coronary Artery Disease, Type 2 Diabetes Mellitus Black or African American Male Smoker kg 72.7
|
|
428
|
+
ab33ba540469ce7eea6ecc7a13b9075c HBM769.HVDR.369 years 76.0 kg/m2 37.5 Jamie Allen allenj2@vanderbilt.edu 1575489767807 Vanderbilt TMC cm 157.4 1746719259008 HuBMAP Hypertension, Coronary Artery Disease, Cancer White Female kg 93.0
|
|
429
|
+
3ad74c9d10ccf828672b2ba990f915a8 HBM624.KWHJ.622 Blood Type A1 years 19.0 kg/m2 23.13 Head trauma STEPHEN FISHER safisher@sas.upenn.edu 1660231621630 Motor vehicle accident TMC - University of Pennsylvania cm 167.64 1746716149474 HuBMAP Blunt Injury Chlamydia White Rh positive Female Alcohol use, Marijuana use kg 65.0
|
|
430
|
+
14aa5da0100e072b560ae411c9b8de06 HBM349.DLJD.259 Blood Type A years 43.0 kg/m2 27.1 Cerebral edema Yiing Lin liny@wustl.edu 1607713667993 Natural causes California Institute of Technology TMC cm 149.9 % 58.0 1746706124685 HuBMAP Liver failure White Female Smoker, Heavy drinker kg 60.8
|
|
431
|
+
c1df5ee2c63f607dded63f9689fb1985 HBM666.TKFP.872 years 62.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245352013 Fitzpatrick Skin Type II General Electric RTI 1744994949697 HuBMAP Unknown Female
|
|
432
|
+
ea2b891dcf4b866cd236d96993be3557 HBM233.TFDG.574 years 43.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245355958 Fitzpatrick Skin Type II General Electric RTI 1744995087829 HuBMAP Unknown Male
|
|
433
|
+
93053f6bf3978e7e706b7c4dfac49db5 HBM777.CPLG.637 years 30.0 Elizabeth McDonough elizabeth.mcdonough@ge.com 1707245346689 Fitzpatrick Skin Type IV General Electric RTI 1745943297736 HuBMAP Unknown Female
|