http://www.perlmonks.org?node_id=369635


in reply to Re: non-exact regexp matches
in thread non-exact regexp matches

Hi, I tested your program on the following sequence:
ACCAACCGGATTCTAGATGCAGATGTTGAAGATT # works OK. Change the second C for a G: AGCAACCGGATTCTAGATGCAGATGTTGAAGATT # Doesn't work.
I'm looking over your regexp... bu it'll take me a while to figure it out. Thanks for the help. Vince

Replies are listed 'Best First'.
Re^3: non-exact regexp matches
by japhy (Canon) on Jun 25, 2004 at 15:22 UTC
    That's because Abigail-II's regex only handles the case of deletions. To support insertions and modifications, you need a more robust approach.
    _____________________________________________________
    Jeff[japhy]Pinyan: Perl, regex, and perl hacker, who'd like a job (NYC-area)
    s++=END;++y(;-P)}y js++=;shajsj<++y(p-q)}?print:??;
      Thanks Jeff. I think I read up some more on advanced regexp before i get in over my head. Vince