-
Notifications
You must be signed in to change notification settings - Fork 17
Description
I've just run into a few errors from the "Tool on data N" naming e.g. galaxyproject/tools-iuc#1842 that turned out to be very helpful for identifying I needed to handle spaces better in the wrapper. But having spaces in filenames is not something to be encouraged imho (and I'm well aware that I'm one of the people currently propagating this!). I know spaces in input filenames could be replaced in the tool wrappers, but I was wondering if the recommended default naming could be something without spaces? And maybe include the element_identifier instead of (or in addition to) on_string?
For example, in the mageck case could I change:
${tool.name} on ${on_string}: sgRNA Counts
to something like below (with underscore or dot or something-not-a-space separating):
${tool.name}_${element_identifier}_sgRNACounts
Although if the tool.name has spaces they'd also need replacing, or could the tool.id be used instead.