Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-21 Thread trias
Cool, Does anyone else have any other thoughts on this problem? -- View this message in context: http://www.nabble.com/import-data-%28txt-csv%29-into-list-array-and-manipulation-tp20424075p20623480.html Sent from the Python - tutor mailing list archive at Nabble.com. _

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-20 Thread A.T.Hofkamp
trias wrote: Hi, so for this part of the problem it goes a bit like this: I have a CSV file (file1) that contains three columns, column one contains a unique ID type str, columns two and three contain start and stop coordinates type int. the other file (file2) contains two columns, column

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-20 Thread trias
Hi, so for this part of the problem it goes a bit like this: I have a CSV file (file1) that contains three columns, column one contains a unique ID type str, columns two and three contain start and stop coordinates type int. the other file (file2) contains two columns, column one contains a

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-13 Thread Kent Johnson
On Thu, Nov 13, 2008 at 9:50 AM, trias <[EMAIL PROTECTED]> wrote: > PS I could maybe upload a couple of small example flies or a schematic to > see what I mean A small example would be very helpful. Also please subscribe to the list. Kent ___ Tutor mail

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-13 Thread trias
Hi again, I got a bit better in python the last few days, but looking at some codes it almost looks impossible to catch up. but definitely want to fight it, looks well worth the effort, plus it probably works exponentially :) I read a little bit about the interval/segment trees, and it looks t

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-11 Thread spir
Triantafyllos Gkikopoulos a écrit : > Hi, > > Thanks for the advice, > > I will do some more reading this week and look into your solution as > well as others. > > So basicaly my data is enrichement signal on yeast genomic locations, > and want to map this signal in respect to genes, and the av

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-11 Thread trias
Hi all, Thanks so much for the help, I will have a look at the suggestions as well as the other thread,links this week and should post here when I have tried them/need more help. Thanks -- View this message in context: http://www.nabble.com/import-data-%28txt-csv%29-into-list-array-and-manip

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-10 Thread Kent Johnson
On Mon, Nov 10, 2008 at 12:12 PM, trias <[EMAIL PROTECTED]> wrote: > I have started learning python (any online help content suggestions are > welcome) and want to write a couple of scripts to do simple numeric > calculations on array data. Welcome! Have you seen http://wiki.python.org/moin/Begi

Re: [Tutor] import data (txt/csv) into list/array and manipulation

2008-11-10 Thread Tim Michelsen
filetype(2) The other file contains signal data in three columns, column one is a unique identifier type int, and the other two columns contain two type int values (genomic location reference values) ** import this as array/list I want to map the location of filetype(2) with respect to filety

[Tutor] import data (txt/csv) into list/array and manipulation

2008-11-10 Thread trias
Hi, I have started learning python (any online help content suggestions are welcome) and want to write a couple of scripts to do simple numeric calculations on array data. filetype(1) I have reference files (ie file.csv) that contain three columns with variable rows, first column is type str co