Hi everyone,
i have to write a step that have in input an array of file and for each file i need a different prefix. e.g. bowtie2 -1 *path_file_1* -2 *path_file_2* *other flags*
Are there an elegant way of do it? I found only discussions on array with same prefix. For now i wrote this
The array can have one or two elements and the flags are differents.
When there are two elements the flags are “-1” and “-2”, instead when it only one the flag is “-U”. I think that the usage of inputBinding and prefix is very elegant when the prefix is repeated. I wanted to know if it can do a similar thing but with different prefixes, but I guess not.