an extensible light weight xml based monitoring system
play

An extensible light-weight XML-based monitoring system for sequence - PowerPoint PPT Presentation

Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion An extensible light-weight XML-based monitoring system for sequence databases Dieter Van de Craen 1 Frank Neven 1 Kerstin Koch


  1. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion An extensible light-weight XML-based monitoring system for sequence databases Dieter Van de Craen 1 Frank Neven 1 Kerstin Koch 1 1 Hasselt University and Transnational University of Limburg 22 July 2006

  2. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Motivation . . . update update update Genbank ? Question: Is there a gene with high similarity to my sequence ?

  3. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Motivation Existing Solutions Alerting Systems BioMail, Jade, Science Direct: literature PubCrawler: PubMed, Genbank XML filtering systems XFilter, YFilter, XMLTK: no full XPath

  4. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Monitoring System Goals light-weight: locally installed extensible: XML/XPath-based user-friendly: web-interface efficient

  5. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Outline Motivation 1 Introduction to XML and XPath 2 System Overview 3 Evaluation 4 Brute Force XML Streaming Query Containment Experiments 5 Incremental Maintenance 6 Conclusion 7

  6. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion XML and XPath eXtensible Markup Language: standard for data exchange on the Web, XML formats for biological data: BSML, GO-XML,. . . <Feature-table title="Features"> ... <Qualifier value="genomic DNA" value-type="mol_type"/> ... </Feature-table> XPath: XML pattern language for locating information in XML documents Examples: //Qualifier[@value-type="mol_type"]/@value boolean(//Qualifier[@value-type="mol_type" and contains(@value,"DNA"])

  7. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion System Overview Input Module QueryTranslation WWW interface . . . GenBank SwissProt PDB Evaluation Module DB Update Module local repository Request Evaluator Alignment Module BioDBInterface XML Converter Report Generator

  8. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion System Overview Input Module WWW interface QueryTranslation WWW Interface Query Translator

  9. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion System Overview Input Module WWW interface QueryTranslation Blast ID sequence Evalue wordsize MatchSize WWW Interface ... Query Translator 51 gcagtgcc... 10 11 20 ... Mapping ID variable querytype keyword value ... 51 v_51_1 contains classifi cation fi sh = ⇒ 51 v_51_2 contains tissue_type brain 51 v_51_3 equals molecular_type mRNA ... Query ID userID database formula ... 51 8 genbank v_51_1 & v_51_2 & v_51_3 ...

  10. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion System Overview Evaluation Module Request Evaluator Alignment Module Report Generator Request Evaluator: evaluates metadata constraints of the requests on the update Alignment Module: alings every selected sequence with the corresponding source sequences Report Generator

  11. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion System Overview Update Module BioDBInterface XML Converter BioDBInterface: checks availability of updates XML Converter

  12. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Outline Motivation 1 Introduction to XML and XPath 2 System Overview 3 Evaluation 4 Brute Force XML Streaming Query Containment Experiments 5 Incremental Maintenance 6 Conclusion 7

  13. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Evaluation Input: set of monitoring requests, set of records in the update Evaluation Compute which requests match which records in the 1 update For these matches align their sequences 2 Build a report if the alignment is satisfying 3

  14. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Evaluation Input: set of monitoring requests, set of records in the update Evaluation Compute which requests match which records in the 1 update For these matches align their sequences 2 Build a report if the alignment is satisfying 3 Bottleneck: Step 1

  15. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Evaluation Evaluation Strategies: Brute force 1 XML Streaming 2 Query Containment 3

  16. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Brute Force Test every metadata constraint for every entry in the update Evaluation of the XPath expressions: Xalan

  17. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion XML Streaming XML stream query processing systems offer efficient XPath evaluation, but support a limited fragment Idea: proceed in two steps: retreive all the values for search fields for a record in the 1 update using YFilter = ⇒ complex value representation evaluate the metadata constraints on this complex value 2 representation

  18. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion XML Streaming organism.contains(‘Oncorhynchus’) AND molecular_type.contains(‘mRNA’) 1 YFilter 2 Evaluation f values organism {“Oncorhynchus mykiss”} accession { “AM181351” } keyword { “vitronectin protein 1”, “vtn1 gene” } molecular type {“mRNA”} . . . . . .

  19. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Query Containment Idea: related topics of research will lead to related metadata constraints ⇒ query containment: a constraint p ⊆ a constraint p ′ if a = record r satisfies p , r will also satisfy p ′ Example: organism.equals(‘Oncorhynchus mykiss’) AND molecular_type.contains(‘mRNA’) ⊆ organism.contains(‘Oncorhynchus’) Query containment reduces to unsatisfiability of propositional logical formulas: CO NP-complete = ⇒ Limmat

  20. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG a ∧ b ∧ c a ∧ b ∧ d ⊆ ⊆ a ∧ b ⊆ ⊆ ⊆ a d b node: set of equivalent constraints n n ′ edge if every contraint in n is contained in every ⊆ constraint in n ′

  21. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d

  22. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d a d b

  23. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d a ∧ b ⊆ ⊆ a d b

  24. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d a ∧ b ∧ c ⊆ a ∧ b ⊆ ⊆ a d b

  25. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d a ∧ b ∧ c a ∧ b ∧ d ⊆ ⊆ a ∧ b ⊆ ⊆ ⊆ a d b

  26. Motivation Introduction to XML and XPath System Overview Evaluation Experiments Incremental Maintenance Conclusion Containment DAG metadata constraints: a , b , d , a ∧ b , a ∧ b ∧ c and a ∧ b ∧ d a ∧ b ∧ c a ∧ b ∧ d ⊆ ⊆ a ∧ b ⊆ ⊆ ⊆ a d b Observations: only one constraint is evaluated for a set of equivalent 1 constraints if a record r matches a constraint in node n then all constraints 2 in descendant nodes of n match r if a record r does not match a constraint in node n then all 3 constraints in ancestor nodes of n do not match r

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend