1 / 44

Semantic Web for Life Science Data Sharing and Integration

Semantic Web for Life Science Data Sharing and Integration. Kei Cheung, PhD Yale Center for Medical Informatics. CBB752, October 1, 2012, Yale University. in Science. (Nature Special Issue, September 2008). Big Data in Life Sciences.

isra
Télécharger la présentation

Semantic Web for Life Science Data Sharing and Integration

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Semantic Web for Life Science Data Sharing and Integration Kei Cheung, PhD Yale Center for Medical Informatics CBB752, October 1, 2012, Yale University

  2. in Science (Nature Special Issue, September 2008)

  3. Big Data in Life Sciences • The Human Genome Project (HGP) has transformed genome sciences from being experimental to being increasingly computational • HGP has intensified the growth of computational biology and bioinformatics (CBB) • 1000 Genomes has further intensified the growth of CBB • The Web has become a popular medium for accessing information over the Internet • Numerous bioinformatics databases and tools are Web accessible • These databases and tools as well as the Web have become indispensable for modern-day biomedical research

  4. Can Google answer every question?!

  5. I’m NOT a company! Kei (Hui) Cheung Not me! Kei (Hoi) Cheung (20 years ago) Kei (Hoi) Cheung (more recent) Google Then Find the most recent image of the person “Kei Hoi Cheung”

  6. Google Now

  7. Schema.org • It is community effort providing a standard vocabulary for HTML tags • Search engines such as Google, Yahoo, and Bing have started to incorporate schema.org into their semantic search strategies • Use microdata/microformat/RDFa to embed schema.org terms within HTML documents

  8. RDFa Example ….. <div vocab="http://schema.org/" typeof="Product"> <img property="image" src="dell-30in-lcd.jpg" /> <span property="name">Dell UltraSharp 30" LCD Monitor</span> <div property="aggregateRating" typeof="AggregateRating"> <span property="ratingValue">87</span> out of <span property="bestRating">100</span> based on <span property="ratingCount">24</span> user ratings </div> …..

  9. Problems of the Current Web • Lack of use of global identifiers • Lack of links and link semantics • Lack of data semantics

  10. Lack of Use of Global Identifiers • For example, each major protein database (UniProt, Ensembl, RefSeq, etc) assigns identifiers to protein sequences according to their own internal guidelines and identifier pattern. • These databases may be in flux, as identifiers and sequences can change due to new data or predictive algorithms.

  11. colllaborators Lack of Links and Link Semantics

  12. Lack of Data Semantics

  13. Web 1.0 Web 3.0 Web 2.0 Web 2.0/3.0 Web 2.0/3.0 Transforming Web 1.0 into Web 2.0 & Web 3.0

  14. Web 2.0 • It changes the way people communicate and share artifacts on the web (e.g., Flicker, youtube, facebook) • Wiki, blog, RSS, folksonomy (social tagging) • Multimedia rich (songs, images, videos, etc) • Dynamic, interactive, responsive user interface (Ajax) • XML-based data exchange format

  15. Mashup • Mashup (music), the musical genre encompassing songs which consist entirely of parts of other songs • Mashup (video), a video that is edited from more than one source to appear as one • Mashup (digital), a digital media file containing any or all of text, graphics, audio, video, and animation, which recombines and modifies existing digital works to create a derivative work. • Mashup (web application hybrid), a web application that combines data and/or functionality from more than one source

  16. XML(KML) - Based Geo Data Mashup Data file at site 2 Data file at site 1 KML file 2 KML file 1 Data file at site 3 KML file 3 KML file 4 KML file n Data file at site n Data file at site 4

  17. NCI’s State Cacner Profile (http://statecancerprofiles.cancer.gov) Use of Yahoo! Pipes to convert tabular data into KML format

  18. GeoCommons: Mashup of Maps

  19. Web 3.0: Semantic Web • The Semantic Web provides a common machine-readable framework that allows data to be shared and reused across application, enterprise, and community boundaries • The Semantic Web is a knowledge web of data • The Semantic Web is about two things • It is about common formats for identification, representation, and integration of data drawn from diverse sources • It is also about languages for recording how the data relates to real world objects

  20. Layers of the Semantic Web

  21. Semantic Web = Brilliant Web

  22. Knowledge Web Data Integration

  23. Web 3.0: Semantic Web (Cont’d) • Global identifying scheme (URI) • Standard data modeling languages (RDF, RDFS, OWL) • Standard query languages (SPARQL) • Enabling tools/technologies (e.g., Protégé, Jena, triplestore, etc)

  24. Resource Description Framework (RDF) • It is a standard data model (directed acyclic graph) for representing information (metadata) about resources in the World Wide Web • In general, it can be used to represent information about “things” or “resources” that can be identified (using URI’s) on the Web • It is intended to provide a simple way to make statements (descriptions) about Web resources

  25. Uniform Resource Identifiers (URIs) • A URI is a string of characters used to identify or name a resource on the Internet. • URLs (Uniform Resource Locators) are a particular type of URI, used for resources that can be accessed on the WWW (e.g., web pages) • In RDF, URIs typically look like “normal” URLs, often with fragment identifiers to point at specific parts of a document: • http://www.semantic-systems-biology.org/SSB#CCO_B0000000 (id for “core cell cycle protein” in Cell Cycle Ontology)

  26. RDF Triple/Graph • The basic information unit in RDF is an RDF statement in the form of • (subject, property, object) • Each RDF statement can be modeled as a graph comprising two nodes connected by a directed arc • A triple example • A set of such triples can jointly form a directed labeled graph (DLG) that can in theory model a significant part of domain knowledge. • An RDF graph can be represented in different formats (XML, Turtle, N3…)

  27. Linking statements to aggregate data from multiple sources is a

  28. Linking statements to create knowledge

  29. Named Graph biordf:P05067 located in Interacts with Meta Statement Created by biordf:P05067 foaf:kei_cheung

  30. Linked Data Cloud

  31. Cell Cycle Ontology (CCO) (Antezana et al, 2009, Genome Biology) http://genomebiology.com/2009/10/5/R58

  32. RDF Graph Match (SPARQL) core cell cycle protein BASE <http://www.semantic-systems-biology.org/webcite> PREFIX rdfs:<http://www.w3.org/2000/01/rdf-schema#webcite> PREFIX ssb:<http://www.semantic-systems-biology.org/SSB#webcite> SELECT ?protein_label WHERE {    GRAPH <cco_S_pombe> {       ?protein ssb:is_a ssb:CCO_B0000000.       ?protein rdfs:label ?protein_label    } }

  33. RDF Schema (RDFS) • RDF Schema terms: • Class • Property • type • subClassOf • range • Domain • Example: <DNASequence, type, Class> <Promoter,subClassOf,DNASequence> <Protein,type,Class> <TranscriptionFactor,subClassOf,Protein> <Bind,type,Property> <Bind,domain, TranscriptionFactor> <Bind,range, Promoter>

  34. Relational table -> RDF -> RDFS ontology

  35. Web Ontology Language (OWL) • It is more semantically expressive than RDF and RDFS, but it is syntactically the same as RDF • Relationship constraints such as cardinality, sameAs, etc • It has three species: OWL Lite, OWL DL, OWL Full

  36. OWL DL Representation (Subsumption) :Nucleus a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:onProperty :part_of ; owl:someValuesFrom :Cell ] Necessary but not sufficient condition: part of a nucleus is also part of a cell, but part of a cell is not necessarily part of a nucleus

  37. OWL Reasoning • Which proteins participate in “mitosis” :Protein a owl:Class ; rdfs:subClassOf [ a owl:Restriction ; owl:onProperty :participates_in ; owl:someValuesFrom :Mitosis ]

  38. Semantic Web Rule Language (SWRL = OWL + Rules) hasParent(?x1,?x2) ∧ hasBrother(?x2,?x3) ⇒ hasUncle(?x1,?x3)

  39. SWRL (cont’d)

  40. Boimedical ontologies available in RDF/OWL format • UniProt • Gene Ontology • NCI Metathesaurus • MGED Ontology • Sequence Ontology • Protein Ontology • These and many more ontologies are available in ontology repositories such as the NCBO Bioportal (http://bioportal.bioontology.org/)

  41. SW Enabling Technologies • Ontology editor (e.g., protégé) • Triple store (e.g., virtuoso) • OWL reasoner (e.g., Pellet) • SWRL (e.g., protégé plug-in)

  42. Collaborative Semantic Web Projects • Protein motion (biosciences) • Pseudogenes (biosciences) • SenseLab (neurosciences) • Pathways (translational medicine) • Semantic Web for Health Care and Life Science Interest Group (chartered by W3C) • BioRDF task force

  43. The End

More Related