Re: [Pharo-users] Conditional CSV parsing

2015-02-22 Thread stepharo
I will add that to the topic list! Stef Le 22/2/15 22:15, Sven Van Caekenberghe a écrit : There are some cool ideas here: https://github.com/BurntSushi/xsv On 31 Jan 2015, at 14:26, stepharo wrote: hernan if you need some help you can also find a smart student and ask ESUG to sponsor hi

Re: [Pharo-users] Conditional CSV parsing

2015-02-22 Thread Sven Van Caekenberghe
There are some cool ideas here: https://github.com/BurntSushi/xsv > On 31 Jan 2015, at 14:26, stepharo wrote: > > hernan > > if you need some help you can also find a smart student and ask ESUG to > sponsor him during a summertalk. > > Stef > > Le 26/1/15 21:03, Hernán Morales Durand a écri

Re: [Pharo-users] Conditional CSV parsing

2015-01-31 Thread stepharo
Sven I just added a section on your chapter :)

Re: [Pharo-users] Conditional CSV parsing

2015-01-31 Thread stepharo
hernan if you need some help you can also find a smart student and ask ESUG to sponsor him during a summertalk. Stef Le 26/1/15 21:03, Hernán Morales Durand a écrit : 2015-01-26 9:01 GMT-03:00 Sven Van Caekenberghe >: Hernán, > On 26 Jan 2015, at 08:00, Hern

Re: [Pharo-users] Conditional CSV parsing

2015-01-26 Thread Sven Van Caekenberghe
Hernán, > On 26 Jan 2015, at 08:00, Hernán Morales Durand > wrote: > > It is possible :) > I work with DNA sequences, there could be millions of common SNPs in a genome. Still weird for CSV. How many record are there then ? I assume they all have the same number of fields ? Anyway, could you

Re: [Pharo-users] Conditional CSV parsing

2015-01-25 Thread Hernán Morales Durand
It is possible :) I work with DNA sequences, there could be millions of common SNPs in a genome. Cheers, Hernán 2015-01-26 3:33 GMT-03:00 Sven Van Caekenberghe : > > > On 26 Jan 2015, at 06:32, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > > > > > 2015-01-23 18:00 GMT-03:0

Re: [Pharo-users] Conditional CSV parsing

2015-01-25 Thread Sven Van Caekenberghe
> On 26 Jan 2015, at 06:32, Hernán Morales Durand > wrote: > > > > 2015-01-23 18:00 GMT-03:00 Sven Van Caekenberghe : > > > On 23 Jan 2015, at 20:53, Hernán Morales Durand > > wrote: > > > > Hi Sven, > > > > 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > > Hi Hernán, > > > > > On 23

Re: [Pharo-users] Conditional CSV parsing

2015-01-25 Thread Hernán Morales Durand
2015-01-23 18:00 GMT-03:00 Sven Van Caekenberghe : > > > On 23 Jan 2015, at 20:53, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > Hi Sven, > > > > 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > > Hi Hernán, > > > > > On 23 Jan 2015, at 19:50, Hernán Morales Durand < > her

Re: [Pharo-users] Conditional CSV parsing

2015-01-23 Thread Sven Van Caekenberghe
> On 23 Jan 2015, at 20:53, Hernán Morales Durand > wrote: > > Hi Sven, > > 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > Hi Hernán, > > > On 23 Jan 2015, at 19:50, Hernán Morales Durand > > wrote: > > > > I used to use a CSV parser from Squeak where I could attach conditional > > i

Re: [Pharo-users] Conditional CSV parsing

2015-01-23 Thread Hernán Morales Durand
Hi Sven, 2015-01-23 16:06 GMT-03:00 Sven Van Caekenberghe : > Hi Hernán, > > > On 23 Jan 2015, at 19:50, Hernán Morales Durand < > hernan.mora...@gmail.com> wrote: > > > > I used to use a CSV parser from Squeak where I could attach conditional > iterations: > > > > csvParser rowsSkipFirst: 2 do:

Re: [Pharo-users] Conditional CSV parsing

2015-01-23 Thread Sven Van Caekenberghe
Hi Hernán, > On 23 Jan 2015, at 19:50, Hernán Morales Durand > wrote: > > I used to use a CSV parser from Squeak where I could attach conditional > iterations: > > csvParser rowsSkipFirst: 2 do: [: row | " some action ignoring first 2 fields > on each row " ]. > csvParser rowsSkipLast: 2 do:

[Pharo-users] Conditional CSV parsing

2015-01-23 Thread Hernán Morales Durand
I used to use a CSV parser from Squeak where I could attach conditional iterations: csvParser rowsSkipFirst: 2 do: [: row | " some action ignoring first 2 fields on each row " ]. csvParser rowsSkipLast: 2 do: [: row | " some action ignoring last 2 fields on each row " ]. csvParser rowsWhere: [ " a