in reply to Re: how to find this substring?
in thread how to find this substring?

From the OP:

I need to read some DNA sequences and check if they start with 'ATG' and end in 'TAA', 'TAG' or 'TGA'

Given the sequence:

ATGXXXTAAXXXTAA

your code outputs:

ATGXXXTAA

whereas it should print the whole string (or 'true', or whatever).

Replies are listed 'Best First'.
Re^3: how to find this substring?
by Anonymous Monk on Jun 08, 2012 at 14:15 UTC

    (o.O)

    So, why can't you change line 6 to be print "whatever\n\n";?