Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/kg-explorer/src/app/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ export const ORGAN_ICON_MAP: Record<string, string> = {
'http://purl.obolibrary.org/obo/UBERON_0014455': 'adipose',
'http://purl.obolibrary.org/obo/UBERON_0000467': 'anatomical-systems',
'http://purl.obolibrary.org/obo/UBERON_0000955': 'brain',
'http://purl.org/sig/ont/fma/fma15046': 'adipose', // TODO: get icon
'http://purl.obolibrary.org/obo/UBERON_0002182': 'extrapulmonary-bronchus',
'http://purl.obolibrary.org/obo/UBERON_0000970': 'eye',
'http://purl.obolibrary.org/obo/UBERON_0003889': 'fallopian-tube-left', //fallopian tube
Expand All @@ -235,6 +236,7 @@ export const ORGAN_ICON_MAP: Record<string, string> = {
'http://purl.obolibrary.org/obo/UBERON_0004536': 'lymph-node', //lymph vasculature
'http://purl.obolibrary.org/obo/UBERON_0000165': 'mouth',
'http://purl.obolibrary.org/obo/UBERON_0000383': 'muscular-system',
'http://purl.obolibrary.org/obo/UBERON_0003688': 'omentum', // TODO: get icon
'http://purl.obolibrary.org/obo/UBERON_0000992': 'ovaries', //ovary
'http://purl.obolibrary.org/obo/UBERON_0001264': 'pancreas',
'http://purl.obolibrary.org/obo/UBERON_0001270': 'pelvis',
Expand Down
14 changes: 14 additions & 0 deletions libs/ccf-shared/src/lib/services/organ-info/organ-info.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@ export const ALL_POSSIBLE_ORGANS = (
hasSex: true,
id: 'http://purl.obolibrary.org/obo/UBERON_0002509',
},
{
src: 'app:adipose', // TODO: get icon
organ: 'Epiploic appendage of transverse colon',
name: 'Epiploic appendage of transverse colon',
hasSex: true,
id: 'http://purl.org/sig/ont/fma/fma15046',
},
{
disabled: true,
src: 'app:eye',
Expand Down Expand Up @@ -223,6 +230,13 @@ export const ALL_POSSIBLE_ORGANS = (
hasSex: true,
id: 'http://purl.obolibrary.org/obo/UBERON_0000165',
},
{
src: 'app:adipose', // TODO: get icon
organ: 'Omentum',
name: 'Omentum',
hasSex: true,
id: 'http://purl.obolibrary.org/obo/UBERON_0003688',
},
{
disabled: true,
src: 'app:ovary-left',
Expand Down
Loading