try to change failed commit status

parent 4354dd61
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Name
ALFRED
AO
AO Foundation
BRENDA
CAS number
CAS Number
ChEBI
ChEMBL
ChemSpider
dbSNP
DiseasesDB
Dorlands /Elsevier
DrugBank
EC number
ECHA InfoCard
eMedicine
Ensembl
Entrez
ExPASy
External IDs
FMA
GARD
Gene Ontology
GeneReviews
HapMap
HgenetInfoDB
HUGO
ICD-10
ICD-10-CM
ICD-9
ICD-9-CM
ICD-O
IntEnz
InterPro
IUPHAR/BPS
KEGG
MedlinePlus
MeSH
MetaCyc
NCI
NeuroLex ID
NORD
OMIM
Orphanet
Orthobullets
OrthoInfo
Patient UK
PDB structures
Pfam
Pfam clan
PRIAM
PROSITE
PubChem CID
Radiopaedia
Radiopedia
RefSeq
Rfam
SCOP
SNPedia
SUPERFAMILY
TA
TE
TH
UNII
UniProt
Wheeless Online
\ No newline at end of file
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX category: <http://dbpedia.org/resource/Category:>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT DISTINCT ?d ?dn ?wikiPage ?icd9 ?icd10 ?disDB ?meshID ?mlp ?omim ?emed ?frbase
WHERE {
?d a <http://dbpedia.org/ontology/Disease>.
?d foaf:isPrimaryTopicOf ?wikiPage.
OPTIONAL { ?d <http://dbpedia.org/ontology/icd9> ?icd9. }
OPTIONAL { ?d <http://dbpedia.org/ontology/icd10> ?icd10. }
OPTIONAL { ?d <http://dbpedia.org/ontology/diseasesDb> ?disDB. }
OPTIONAL { ?d <http://dbpedia.org/ontology/meshId> ?meshID. }
OPTIONAL { ?d <http://dbpedia.org/property/medlineplus> ?mlp. }
OPTIONAL { ?d <http://dbpedia.org/ontology/omim> ?omim. }
OPTIONAL { ?d <http://dbpedia.org/property/emedicinetopic> ?emed. }
OPTIONAL {
?d owl:sameAs ?frbase.
FILTER(regex(str(?frbase), "freebase", "i")).
}
OPTIONAL {
?d rdfs:label ?dn.
FILTER (lang(?dn) = 'en')
}
}
\ No newline at end of file
SELECT DISTINCT str(?umlsID) as ?umlsID,
str(?diseasename) as ?diseasename
WHERE {
?disease a ncit:C7057, sio:SIO_010299;
sio:SIO_000008 <http://purl.bioontology.org/ontology/STY/T047>;
dcterms:identifier ?umlsID;
dcterms:title ?diseasename}
ORDER BY (?umlsID)
\ No newline at end of file
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX meshv: <http://id.nlm.nih.gov/mesh/vocab#>
PREFIX mesh: <http://id.nlm.nih.gov/mesh/>
PREFIX mesh2015: <http://id.nlm.nih.gov/mesh/2015/>
PREFIX mesh2016: <http://id.nlm.nih.gov/mesh/2016/>
PREFIX mesh2017: <http://id.nlm.nih.gov/mesh/2017/>
SELECT DISTINCT count(?d)
FROM <http://id.nlm.nih.gov/mesh>
WHERE {
?d a meshv:Descriptor .
?d meshv:treeNumber ?tn .
FILTER(REGEX(?tn,".*C01.*|.*C02.*|.*C03.*|.*C04.*|.*C05.*|.*C06.*|.*C07.*|.*C08.*|.*C09.*|.*C010.*|.*C011.*|.*C012.*|.*C013.*|.*C014.*|.*C015.*|.*C016.*|.*C017.*|.*C018.*|.*C019.*|.*C020.*|.*C021.*|.*C023.*|.*C024.*|.*C025.*|.*C026.*|.*F03.*"))
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment