-
-
Save aplz/f4eea39b5a5e80ca28cfeb71872f77fd to your computer and use it in GitHub Desktop.
All UMLS semantic types
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tui,label | |
T001,Organism | |
T002,Plant | |
T004,Fungus | |
T005,Virus | |
T007,Bacterium | |
T008,Animal | |
T010,Vertebrate | |
T011,Amphibian | |
T012,Bird | |
T013,Fish | |
T014,Reptile | |
T015,Mammal | |
T016,Human | |
T017,Anatomical Structure | |
T018,Embryonic Structure | |
T019,Congenital Abnormality | |
T020,Acquired Abnormality | |
T021,Fully Formed Anatomical Structure | |
T022,Body System | |
T023,"Body Part, Organ, or Organ Component" | |
T024,Tissue | |
T025,Cell | |
T026,Cell Component | |
T028,Gene or Genome | |
T029,Body Location or Region | |
T030,Body Space or Junction | |
T031,Body Substance | |
T032,Organism Attribute | |
T033,Finding | |
T034,Laboratory or Test Result | |
T037,Injury or Poisoning | |
T038,Biologic Function | |
T039,Physiologic Function | |
T040,Organism Function | |
T041,Mental Process | |
T042,Organ or Tissue Function | |
T043,Cell Function | |
T044,Molecular Function | |
T045,Genetic Function | |
T046,Pathologic Function | |
T047,Disease or Syndrome | |
T048,Mental or Behavioral Dysfunction | |
T049,Cell or Molecular Dysfunction | |
T050,Experimental Model of Disease | |
T051,Event | |
T052,Activity | |
T053,Behavior | |
T054,Social Behavior | |
T055,Individual Behavior | |
T056,Daily or Recreational Activity | |
T057,Occupational Activity | |
T058,Health Care Activity | |
T059,Laboratory Procedure | |
T060,Diagnostic Procedure | |
T061,Therapeutic or Preventive Procedure | |
T062,Research Activity | |
T063,Molecular Biology Research Technique | |
T064,Governmental or Regulatory Activity | |
T065,Educational Activity | |
T066,Machine Activity | |
T067,Phenomenon or Process | |
T068,Human-caused Phenomenon or Process | |
T069,Environmental Effect of Humans | |
T070,Natural Phenomenon or Process | |
T071,Entity | |
T072,Physical Object | |
T073,Manufactured Object | |
T074,Medical Device | |
T075,Research Device | |
T077,Conceptual Entity | |
T078,Idea or Concept | |
T079,Temporal Concept | |
T080,Qualitative Concept | |
T081,Quantitative Concept | |
T082,Spatial Concept | |
T083,Geographic Area | |
T085,Molecular Sequence | |
T086,Nucleotide Sequence | |
T087,Amino Acid Sequence | |
T088,Carbohydrate Sequence | |
T089,Regulation or Law | |
T090,Occupation or Discipline | |
T091,Biomedical Occupation or Discipline | |
T092,Organization | |
T093,Health Care Related Organization | |
T094,Professional Society | |
T095,Self-help or Relief Organization | |
T096,Group | |
T097,Professional or Occupational Group | |
T098,Population Group | |
T099,Family Group | |
T100,Age Group | |
T101,Patient or Disabled Group | |
T102,Group Attribute | |
T103,Chemical | |
T104,Chemical Viewed Structurally | |
T109,Organic Chemical | |
T114,"Nucleic Acid, Nucleoside, or Nucleotide" | |
T116,"Amino Acid, Peptide, or Protein" | |
T120,Chemical Viewed Functionally | |
T121,Pharmacologic Substance | |
T122,Biomedical or Dental Material | |
T123,Biologically Active Substance | |
T125,Hormone | |
T126,Enzyme | |
T127,Vitamin | |
T129,Immunologic Factor | |
T130,"Indicator, Reagent, or Diagnostic Aid" | |
T131,Hazardous or Poisonous Substance | |
T167,Substance | |
T168,Food | |
T169,Functional Concept | |
T170,Intellectual Product | |
T171,Language | |
T184,Sign or Symptom | |
T185,Classification | |
T190,Anatomical Abnormality | |
T191,Neoplastic Process | |
T192,Receptor | |
T194,Archaeon | |
T195,Antibiotic | |
T196,"Element, Ion, or Isotope" | |
T197,Inorganic Chemical | |
T200,Clinical Drug | |
T201,Clinical Attribute | |
T203,Drug Delivery Device | |
T204,Eukaryote |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PREFIX sty: <http://purl.bioontology.org/ontology/STY/> | |
PREFIX umls: <http://bioportal.bioontology.org/ontologies/umls/> | |
PREFIX skos: <http://www.w3.org/2004/02/skos/core#> | |
SELECT DISTINCT ?tui ?label | |
FROM NAMED <http://localhost:3030/umls/umls> | |
WHERE { GRAPH ?g { | |
?type skos:notation ?tui . | |
?type skos:prefLabel ?label . | |
}} ORDER BY ?tui |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment