pallassgj / bpipe

Automatically exported from code.google.com/p/bpipe
0 stars 1 forks source link

Transform and Filter should accept multiple arguments #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently you can specify that a section of a pipeline stage transforms an 
input like so:

foo = {
    transform("csv") {
        ....
    }
}

However if the code performs multiple transformations then you can't easily 
specify them both together. Bpipe should support syntax such as:

foo = {
    transform("csv","xml") {
        ...
    }
}

The same would go for filtering operations.

Original issue reported on code.google.com by ssade...@gmail.com on 6 May 2012 at 2:55

GoogleCodeExporter commented 9 years ago
0.9.5

Original comment by ssade...@gmail.com on 5 Jul 2012 at 10:50