Re: [galaxy-dev] Python tool wrapper with multiple input and output files

2016-07-08 Thread Marius van den Beek
Hi Marco, The tag has been deprecated, what you should use is just Note the $*tool_directory*, this is required for finding the path to the script. (And that has been “magically” done for you by the tag). Hope that works for you, Marius On 8 July 2016 at 11:43, Marco Tangaro

Re: [galaxy-dev] Python tool wrapper with multiple input and output files

2016-07-08 Thread Marco Tangaro
Dear Marius and all, thanks a lot for your answer, it is indeed very interesting. I'm following this one https://github.com/galaxyproject/galaxy/blob/dev/test/functional/tools/collection_two_paired.xml to create an output list, starting from an input list. The command section of my

Re: [galaxy-dev] Python tool wrapper with multiple input and output files

2016-06-07 Thread Marius van den Beek
Hi Marco, you've got an interesting use-case there. You may want to use either a dataset list (if you only supply rna_n.bam), or a paired dataset list (rna_n.bam and dna_n.bam). I would probably implement a conditional, where the user selects either a dataset list or a paired dataset list. The