expressive pattern matching with logol application to the
play

Expressive pattern matching with LOGOL Application to the modelling - PowerPoint PPT Presentation

Expressive pattern matching with LOGOL Application to the modelling of -1 Ribosomal Frameshift events X XXY YY X XXY YYZ Catherine Belleanne - Dyliss team, Rennes 1 University Olivier Sallou - GenOuest plateform, Rennes 1 University Jacques


  1. Expressive pattern matching with LOGOL Application to the modelling of -1 Ribosomal Frameshift events X XXY YY X XXY YYZ Catherine Belleannée - Dyliss team, Rennes 1 University Olivier Sallou - GenOuest plateform, Rennes 1 University Jacques Nicolas - Dyliss team, Inria 1 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  2. What is Logol? g DNA  A new tool for pattern matching on RNA proteins proteins motif motif • attccggtctacc  attc cggtct acc • ctttgtcacg • ctttgtcacg • taggctggcttcggatt  tag gctggc tt c g gatt • tcggcattggattcgga • tcggcattggattcgga • cggatcgattcttttac  c ggatc gattcttttac sequences matches in the sequences t h i th pattern Model 2 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  3. Why a new tool? Why a new tool?  Towards more expressive patterns b beyond motifs TAT -[ A | T ]- T -xxx- AATTCCC d tif towards real biological models Logol language X XXY YYZ  While remaining practicable Logol tool - accept real sequences (e.g. full genomes) accept real sequences (e g full genomes) - in reasonable time 3 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  4. O tli Outline 1 1. Logol language Logol language - Foundations - Some elements 2. Logol tool - Availability Availability - Design of a pattern - Specifications of the tool 3. An example : modelling « -1 frameshifting sites » 4. Conclusion 4 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  5. 1. Logol language 5 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  6. Foundations of the language g g • Make the structure of motifs explicit -> Grammatical models Describe «the language of gene » cf David Searls cf David Searls Describe the language of gene • with an accurate level of grammar -> String Variable Grammars (SVG) String Variables : X…X String Variables : direct copy atc gttat gtat gttat ga direct copy atc gttat gtat gttat ga X X X… ~ X reverse complement atc gttat gtat ataac ga SVG : beyond context-free grammars: « middly context sensitive » regular grammars : motif ( TAT-[A|T]-T-xxx-AATTCCC ) context-free grammars : + palindrome ( stem-loops ) SVG : + copy, repeat • Previous languages/tools using String Variables P i l /t l i St i V i bl Patscan[Dsouza&al, 97] , Patsearch[Pesole&al,00] limited expressivity Genlang[Dong&Searls, 94], Stan[Nicolas&al, 05] or no more maintained -> Logol : in the lineage of Genlang 6 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  7. Some elements of the language 1/3 g g • A first grammar: looking for « aaaaa » anywhere in the sequence mod1()==*>SEQ1 act aaaaa tgg aaaaa gta mod1()==>" aaaaa " • Inexact matches: 2 counters -> mismatch ( $ ) , indel ( $$ ) I t t h 2 t i t h ( $ ) i d l ( $$ ) -> mod1()==>"aaaaa":{ $ [0,1]} act agaaa tgga cost=1 mismatch -> > > aaaaa :{ $$ [0,1]} act aaaaca tgga act aaaaca tgga mod1()==>"aaaaa":{ $$ [0,1]} mod1() distance=1 insert distance 1 insert • String Variables : looking for 2 copies of a string ( X1 ) separated by a gap ( .* ) act atcaa tgg atcaa gta mod1()==> X1 :{#[5,8]}, .* , X1 • Morphisms: to convert a string into another string personal morphisms allowed " wc " :Watson Crick complement, " - " : reverse string, " wobble " :wobble cplt : reverse complement -" wc " actt ggggtt ggatcaagta tt t t mod1()==> "-wc" "aacccc" tt 7 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  8. Some elements of the language 2/3 g g • A constraint approach Constraints : begin ( @ ), end ( @@ ), content ( ? ), length ( # ), cost ( $ ), distance ( $$ ), composition( % ) t ( $ ) di t ( $$ ) iti ( ) mod1()==> X1:{ % "cg":70} X1 must contain at least 70% of ‘c’ and ‘g‘ • Variables can denote instances Instance= string + components V i bl d i -> Mark an instance ( _ VARNAME ) and reuse it ( ? VARNAME , $ VARNAME... ) The second string must exactly match the previous instance act aaTaaaaTaa ctacct The second string must exactly match the previous instance act aaTaaaaTaa ctacct mod1()==>"aaaaa":{$[0,1], _ SAVE1}, ?SAVE1 ‘acgt’ must be located at least 50 nt further than ‘aaaaa’ mod1()==>"aaaaa":{ _ SAVE1}, *., "acgt":{@[ @SAVE1 +50, @SAVE1 +100]} d1() >" " { SAVE1} * " t" {@[ @SAVE1 +50 @SAVE1 +100]} Looking for 3 strings, successively deriving from each other act aaaaaaaaTaaCata mod1()==>X1:{#[5,8], _ S1}, ? S1:{ _ S2}:{$[1,1]}, ? S2:{$[1,1]} Looking for a stem-loop , with sizes of : stem in [5,11], loop in [1,9], stem strands linked by Watson-Crick pairing, 2 mismatch + 1 indel allowed in the stem mod1()==>STEM5:{#[5,11],_S5},.*:{#[1,9]}, -"wc" ? S5:{$[0,2],$$[0,1]} 8 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  9. Some elements of the language 3/3 g g • Repeats: looking for "acgt" repeated between 0 and 5 times. The instances may be separated by a Spacer between 0 to 2 nt may be separated by a Spacer between 0 to 2 nt act acgt gg acgt c acgt ccta mod1()==> repeat ("acgt",[0,2])+[0,5] • Negative contain constraints (!): looking for a string with length between 2 and 5 which is not "ag" mod1()==> ! "ag":{#[2,5]} • Put constraints on several strings P t constraints on se eral strings  VIEW: constraints on consecutive segments The total size of X1::X2::X3 must be between 8 and 20 ( X1:{#[1,10]}, X2:{#[1,10]}, X3:{#[1,10]} ) : {#[8,20]} ( X1 {#[1 10]} X2 {#[1 10]} X3 {#[1 10]} ) {#[8 20]}  Control panel: constraints on non consecutive segments • Superposition of complementary models: Multiple model Superposition of complementary models: Multiple model ’points of view’ points of view -> The sequence must match all the models Note: parameters may be transferred from one model to another one mod1(VAR1).mod2(VAR1,VAR2).mod3()==*>SEQ1 9 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  10. 2. Logol tool 10 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  11. Availability y  On the web : Logol can be used on the GenOuest web site (with restrictions) http://webapps genouest org/LogolDesigner/ restrictions) http://webapps.genouest.org/LogolDesigner/  Via Linux command-line on GenOuest plateform with a GenOuest account account  Download on your own computer NEW! NEW! NEW! Logol software is free and open source , under CeCILL license g p It includes a Linux command line tool and a graphical designer Logol is a fully maintained tool (development manager: Olivier SALLOU ) g y ( p g ) Main logol page: http://logol.genouest.org/web/app.php/logol 11 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  12. Design of a pattern g p mod4()==>(("aaa")|("ccc")|("uuu")|("ggg")) mod4() (( aaa )|( ccc )|( uuu )|( ggg ))  Grammatical model mod2()==>mod4(),(("aaa")|("uuu")),! "g":{#[1,1]} text file mymodel.lgg …  Graphical model  Graphical model with a graphical designer mymodel.lgd http://webapps.genouest.org/LogolDesigner/ 12 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  13. Specifications of the tool p • Input : a Logol model (graphical or grammatical model) a Fasta sequence a Fasta sequence • Runs on a computer or a grid (Linux) Configurable to support multi-core architectures and to use g pp multiple nodes to parallelize treatments when possible. Sequences may be split for more parallelization • Output: a compressed XML file contains all matches of the model • Output: a compressed XML file, contains all matches of the model With the details of each match (position of each word, size, number of errors compared to model…) Possibility to convert it to Fasta (sequence only) or GFF output y ( q y) p Main pipeline - a Java program transforms the model file into a Prolog program a Java program transforms the model file into a Prolog program - the Prolog program parses the sequence (to find the instances of the model) it uses -> a Prolog library (with predicates to operate morphisms, % calculus…) y ( p p p , ) g -> a suffix array indexation (with “Vmatch” or home product “Cassiopee”) 13 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  14. 3 . An example : modelling modelling « -1 frameshifting sites » 1 frameshifting sites 14 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

  15. Programmed -1 ribosomal frameshifting g g A translational recoding strategy   one mRNA may produce two distinct proteins RNA d t di ti t t i Ribosome may switches from the translation of the standard ORF (in the 0-frame) to an overlapping ORF (in the -1 frame) t l i ORF (i th 1 f ) slippery site There, the ribosome may slip of 1 nucleotide to the left start0 ……..... // ……….. stop0 .………………........... stop-1 p standard protein (from the 0-frame) alternative protein -> beginning : built from the 0 frame -> end : -> end : built from the -1 frame built from the 1 frame 15 LOGOL C. Belleannée, O. Sallou, J. Nicolas Jobim 3 juillet 2012

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