1 / 10

BLAST & Regular Expression Searches Functionality Susie Stephens Life Sciences Product Manager

BLAST & Regular Expression Searches Functionality Susie Stephens Life Sciences Product Manager Oracle Corporation. BLAST in the Database. Implemented using a table function interface BLAST search functions can be placed in SQL queries Different functions for match and align

delora
Download Presentation

BLAST & Regular Expression Searches Functionality Susie Stephens Life Sciences Product Manager

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. BLAST & Regular Expression Searches Functionality Susie Stephens Life Sciences Product Manager Oracle Corporation

  2. BLAST in the Database • Implemented using a table function interface • BLAST search functions can be placed in SQL queries • Different functions for match and align • SQL queries can be used to pre-filter database of sequences and post-process the search results • Combination of SQL queries and BLAST is very powerful and flexible

  3. Sub select the sequence database Export the sequences Create BLAST dataset Run BLAST search Import search result into database Write SQL queries for further analysis BLAST Server Sequence DB Search Result Stand-alone BLAST Server Export FormatDB exportFile BLAST DB Import

  4. Core Functionality of BLAST • Implemented an NCBI BLAST 2.0-like version of BLAST • Implemented the 5 core variants • BLASTN: Nucleotide sequence vs. nucleotide db • BLASTP: Protein sequence vs. protein db • TBLAST: Searches involving translations • BLASTX: translated nucleotide sequence vs. protein db • TBLASTN: protein sequence vs. translated nucleotide db • TBLASTX: translated nucleotide sequence vs. translated nucleotide db

  5. BLAST Interface select t.seq_id, t.score, t.expect from Table(BLASTN_MATCH( ‘ATCGAGTACGTACAT’, cursor (select seq_id, sequence from GENE_DB where organism = ‘human’), 5, /* expect_value */ 12)) t /* word_size */ seq_id, score, expect BLASTN_MATCH organism = ‘human’ query_sequence, parameters GENE_DB

  6. BLAST GUI

  7. Regular Expression Searches • Powerful method of describing simple and complex patterns for searching and manipulating • Multilingual regular expression support for SQL and PL/SQL string types • Follows POSIX style Regexp syntax • Support standard Regexp operators • Compatible with popular Regexp implementations like GNU, Perl, Awk

  8. Features • Quantifiers • Grouping • Back References • Character Classes • Anchors • Backtracking • Greediness • LOB Support • Match Options • Locale Sensitive ‘.’ any one character ‘+’one or more ‘*’ zero or more ‘?’ zero or one ‘{m,n}’ between m and n ‘|’ infix or ‘()’ group ‘[ .. ]’ any in the list ‘[^ .. ]’ any not in the list ‘\n’ reference nth group ‘^$’ line/string anchor ‘[:c:]’ classes

More Related