| Literature DB >> 27255189 |
María Del Carmen Legaz-García1, José Antonio Miñarro-Giménez2, Marcos Menárguez-Tortosa1, Jesualdo Tomás Fernández-Breis3.
Abstract
BACKGROUND: Biomedical research usually requires combining large volumes of data from multiple heterogeneous sources, which makes difficult the integrated exploitation of such data. The Semantic Web paradigm offers a natural technological space for data integration and exploitation by generating content readable by machines. Linked Open Data is a Semantic Web initiative that promotes the publication and sharing of data in machine readable semantic formats.Entities:
Keywords: Biomedical open data; Data transformation; Ontologies; Semantic web
Mesh:
Year: 2016 PMID: 27255189 PMCID: PMC4891880 DOI: 10.1186/s13326-016-0075-z
Source DB: PubMed Journal: J Biomed Semantics
Fig. 1Overview of the transformation approach
Fig. 2Description of the mapping between the OrthoXML schema (left) and the orthology ontology (ORTH)(right), where dashed lines represent the links between the content of the OrthoXML schema and the ontology and corresponding instances that fulfill the relation of congruence
Fig. 3Description of the mapping between a XML schema and an ontology in the domain of molecules
Definition of the pattern for ChiralMolecule
| ?chiralMolecule: INDIVIDUAL |
| BEGIN |
| ADD ?chiralMolecule instanceOf (Molecule and |
| has_chemical_properties some Chirality) |
| END; |
Definition of the pattern for protein
| ?protein: INDIVIDUAL |
| ?cds: INDIVIDUAL |
| ?transcript: INDIVIDUAL |
| BEGIN |
| ADD ?protein instanceOf Polypeptide, |
| ADD ?protein derives_from ?cds, |
| ADD ?cds instanceOf CDS, |
| ADD ?cds part_of ?transcript, |
| ADD ?transcript instanceOf Transcript |
| END; |
Definition of the pattern for protein with minor modification for resources without CDS content
| ?protein: INDIVIDUAL |
| ?cds: INDIVIDUAL = create(?protein.RENDERING+_CDS) |
| ?transcript: INDIVIDUAL |
| BEGIN |
| ADD ?protein instanceOf Polypeptide, |
| ADD ?protein derives_from ?cds, |
| ADD ?cds instanceOf CDS, |
| ADD ?cds part_of ?transcript, |
| ADD ?transcript instanceOf Transcript |
| END; |
Fig. 4Mapping interface of SWIT: (left) part of an XML schema about molecules; (right) part of the classes and properties of domain ontology; (bottom) excerpt of the mappings defined between the XML schema and the ontology
Fig. 5Example of pattern mapping in SWIT
Definition of the pattern for histopathology reports
| ?histopathologyReport:INDIVIDUAL, |
| ?finding:INDIVIDUAL, |
| ?size:CONSTANT, |
| ?number:CONSTANT |
| BEGIN |
| ADD ?histopathologyReport instanceOf HistopathologyReport, |
| ADD ?histopathologyReport hasFinding ?finding, |
| ADD ?histopathologyReport number ?number, |
| ADD ?histopathologyReport maxsize ?size |
| END; |