Biomart Update

Loading...

Flash Player 9 (or above) is needed to view presentations.
We have detected that you do not have it on your computer. To install it, go here.

0 comments

Post a comment

    Post a comment
    Embed Video
    Edit your comment Cancel

    Favorites, Groups & Events

    Biomart Update - Presentation Transcript

    1. BioMart 2007 Arek Kasprzyk European Bioinformatics Institute BOSC Vienna, July 2007
    2. Data Flow Mart JAVA PERL Source data DAS Web GUI Command line Desktop GUI Web Service
    3. Data Flow JAVA PERL Mart DAS Web GUI Command line Desktop GUI Web Service
    4. Admin Tools
    5. Recent developments (0.4- 0.6)
      • MartBuilder
      • MartView
      • Web services
      • API
      • DAS
      • Central Server
      • More deployers
    6. Data Flow Mart JAVA PERL Source data DAS Web GUI Command line Desktop GUI Web Service
    7. MartBuilder
    8. MartBuilder
    9. MartBuilder
    10. MartView
    11. API my $initializer = BioMart::Initializer->new('registryFile'=>$confFile); my $registry = $initializer->getRegistry; my $query = BioMart::Query->new('registry'=>$registry,'virtualSchemaName'=>’central_server_1'); $query->setDataset(" hsapiens_gene_ensembl "); $query->addFilter(" chromosome_name ", [” 1 "]); $query->addAttribute(" ensembl_gene_id "); $query->addAttribute(" ensembl_transcript_id "); $query->addAttribute(” ensembl_peptide_id "); $query->setDataset(“ msd ”); $query->addFilter(” experiment_type ", [” NMR "]); $query->addAttribute(" pdb_id "); $query->addAttribute(” resolution "); $query->addAttribute(” release_date "); $query->addAttribute(” header "); my $query_runner = BioMart::QueryRunner->new(); $query_runner->execute($query); $query_runner->printResults();
    12. Web service <Query virtualSchemaName=&quot;central_server_1&quot;> <Dataset name=&quot; hsapiens_gene_ensembl &quot; > <Filter name=&quot; chromosome_name &quot; value=&quot; 1 &quot;/> <Attribute name=&quot; ensembl_gene_id &quot;/> <Attribute name=&quot; ensembl_transcript_id &quot;/> <Attribute name=&quot; ensembl_peptide_id &quot;/> </Dataset> <Dataset name=&quot; msd &quot;> <Filter name=&quot; experiment_type &quot; value=” NMR &quot;/> <Attribute name=&quot; pdb_id &quot;/> <Attribute name=” resolution &quot;/> <Attribute name=” release_date &quot;/> <Attribute name=” header &quot;/> </Dataset> </Query>
    13. MartService
      • Meta data(GET)
        • Marts
        • Datasets
        • Configuration
      • Queries (POST)
    14. Meta data http://www.mycompany.com/mypath/martservice ?
      • Marts
        • type=registry
      • Datasets
        • type=datasets&mart=mymart
      • Configuration
        • type=configuration&dataset=mydataset
    15. Query -O 5utr.dat <?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?> <!DOCTYPE Query> <Query virtualSchemaName = &quot;default&quot; count = &quot;&quot; softwareVersion = &quot;0.5&quot; > <Dataset name=&quot; hsapiens_gene_ensembl &quot; > <Attribute name=&quot; ensembl_gene_id &quot;/> <Attribute name=&quot; ensembl_transcript_id &quot;/> <Filter name=&quot; chromosome_name &quot; value=&quot; 1 &quot;/> <Filter name=&quot; band_end &quot; value=” p36.33 &quot; / > <Filter name=&quot; band_start &quot; value=” q44 &quot;/> </Dataset> <Dataset name=&quot; msd &quot;> <Attribute name=&quot; pdb_id &quot;/> <Attribute name=” experiment_type &quot;/> <Filter name=&quot; experiment_type &quot; value=” NMR &quot;/> </Dataset> </Query> wget -q 'http://www.biomart.org/biomart/martservice?query=
    16. Results
      • Ordered according to
        • Datasets
        • Attributes
      • Default Format TSV
        • Can be altered by specifying a formatter
    17. Genomic data
    18. Uniprot, MSD, ArrayExpress
    19. Model organism databases
    20. Developmental models
    21. Proteomics
    22. Name Fragment Position Alleles strand SNP1 AL139258 1659852 T/A 1 SNP2 NT_25698 2569873 C/T -1 SNP3 chr13 1125698 C/G 1 Genetics of Infectious and Autoimmune Diseases, Pasteur Institute, INSERM U730, Paris, France. Target SNP selection for the study of type 1 diabetes (T1D), malaria and dengue Data conversion and integration Ensembl HapMap NCBI UCSC Priopriatery data Diabetes-Gene Association DataBase Combined proprietary and public data
    23. CAPRISA understanding HIV pathogenesis and epidemiology as well as HIV/AIDS treatment and prevention Clinical Data MID Cellular Immunity Humoral Immunity HLA Typing Sequence & Sequence Related Pipeline
    24. Unilever
      • Human study to evaluate Omics in assessing safety indicators
      • Study of skin inflammation in response to detergent
      • Skin samples taken and analyzed with multiple Omics techniques.
        • Blood
        • Skin biopsy
        • Microdialysis
    25.  
    26. 1. Filter 2. Attributes 3. Results Use Example 1 All genes in the human genome up-regulated in Pancreatic Adenocarcinomas (PDACs) vs Normal Pancreas (ND))
    27. 1. Filter 2. Attributes 3. Results Use Example 2 all upstream sequences for all genes on chromosome 1 up-regulated in Pancreatic Adenocarcinomas (PDACs) vs Normal Pancreas (ND))
    28. 1. Filter 2. Attributes Use Example 3 3. Results Just Finished my experiment and would like to get the overlaps between my results and those reported in previous studies !
    29. Web service
    30. Perl
    31. DAS
    32. Bioconductor package biomaRt
    33. Galaxy
    34. Taverna
    35. Central Server (www.biomart.org)
    36. www.biomart.org/biomart/ martservice
    37. Future plans
    38. New configuration system
      • Normalized
        • Based on a partition table concept
        • Unified pointer system -> relational attribute
        • Configuration merge - implicit federation
        • Write to the db
      • Run time slice and dice of a registry object rather than combinatorial pre-compilation
    39. New configuration system
      • Scalability
        • Updates and maintenance of large configurations
        • Run time server scalability (cache and memory)
        • Scalable for multiple mart users (single instance - security)
        • Scalable for alternative configurations (new MartGUI framework)
    40. New MartGUI framework
      • Components
        • Alternative DS Configurations
        • Alternative GUIs (MView, MQForm,MSForm etc)
        • Alternative Analyzers/Vizualizers (optional install)
      • Extensible
        • Custom extensions to the components
      • Common interface
        • Formatters, DAS, Analyzers, Visualizers
        • Importable/Exportable pair interface
    41. New GUI framework
      • Old ‘GUI unit’:
        • full registry+MartView+default formatters
        • Customization limited to colors and headers
      • New ‘GUI unit’:
        • RegistrySlice+ MartGUI+Visualizer/Analyzer
        • Combine units into your unique functional environment
        • Functional level customization
    42. New GUI framework Gene Id conversion Functional annotation Compare two gene lists Analyze gene list Draw distribution Full search Draw bla bla chart Home Welcome to my data mining website SITE HEADER
    43. New GUI framework Gene Id conversion Functional annotation Compare two gene lists Analyze gene list Genbank Trembl Uniprot Submit Draw distribution Full search paste your ids here Draw bla bla chart Hugo Home SITE HEADER
    44. New GUI framework Home Gene Id converter Fu Full search Welcome to my data mining website
    45. New GUI framework Hugo Genebank Uniprot Swissprot Submit paste your ids here Home Fu Full search Gene Id conversion
    46. Cytogenetic distribution of pancreatic cancer genes satisfying my query (histogram)
    47. Cytogenetic distribution of pancreatic cancer genes satisfying my query (ideogram)
    48. Cytogenetic distribution of chromosomal aberrations in pancreatic cancer
    49.  
    50. New GUI framework
    51. New GUI framework
    52. New configuration tool
      • MartConfigurator
        • Handles a complete registry object
        • Defines GUI units
        • Automated service discovery
        • Manual link override
        • Automated updates for large configurations
        • Improved user interaction
    53. Credits
      • Martians
        • Syed Haider
        • Richard Holland
        • Damian Smedley
      • Contributors
        • Steffen Durinck (NCI, NIH)
        • Eric Just (Northwestern University)
        • Don Gilbert (Indiana University)
        • Darin London (Duke University)
        • Will Spooner (CSHL)
        • Gudmundur Thorisson (CSHL)
        • Benoit Ballester (Universite de la Mediterranee)
        • James Smith (Ensembl)
        • Arne Stabenau (Ensembl)
        • Andreas Kahari (Ensembl)
        • Craig Melsopp (Ensembl)
        • Katerina Tzouvara (EBI)
        • Paul Donlon (Unilever )

    + boscbosc, 3 years ago

    custom

    904 views, 0 favs, 0 embeds more stats

    Title: Biomart 2007
    Author: Arek Kasprzyk

    More info about this document

    © All Rights Reserved

    Go to text version

    • Total Views 904
      • 904 on SlideShare
      • 0 from embeds
    • Comments 0
    • Favorites 0
    • Downloads 21
    Most viewed embeds

    more

    All embeds

    less

    Flagged as inappropriate Flag as inappropriate
    Flag as inappropriate

    Select your reason for flagging this presentation as inappropriate. If needed, use the feedback form to let us know more details.

    Cancel
    File a copyright complaint
    Having problems? Go to our helpdesk?

    Categories

    Tags