[EMAIL PROTECTED] wrote:
> Hi Kent,
>
> Thanks for you solution, unfortunately, as Luis correctly inferred, I'm
> doing computational biology, so my real data is HUGE and I got this error:
>
> Traceback (most recent call last):
> File "stolen.py", line 62, in ?
>first, second = zip(nonGenic
[EMAIL PROTECTED] wrote:
> Hi,
>
> I have a list of tuples like this:
>
> [(1423, 2637),(6457, 8345),(9086, 10100),(12304, 15666)]
>
> Each tuple references coordinates of a big long string and they are in the
> 'right' order, i.e. earliest coordinate first within each tuple, and
> eearliest t
On 21 Jul 2005 20:39:36 +0100, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
Hi,I have a list of tuples like this:[(1423, 2637),(6457, 8345),(9086, 10100),(12304, 15666)]
Each tuple references coordinates of a big long string and they are in the'right' order, i.e. earliest coordinate first within ea
On 21 Jul 2005 [EMAIL PROTECTED] wrote:
> [(1423, 2637),(6457, 8345),(9086, 10100),(12304, 15666)]
>
> What I want to do is use this list of coordinates to retrieve the parts
> of the string *between* each tuple. So in my example I would want the
> slices [2367:6457], [8345:9086] and [10100:123
Hi,
I have a list of tuples like this:
[(1423, 2637),(6457, 8345),(9086, 10100),(12304, 15666)]
Each tuple references coordinates of a big long string and they are in the
'right' order, i.e. earliest coordinate first within each tuple, and
eearliest tuple first in the list. What I want to do i