In my workflow, I am unable to capture specific files using the 'glob' field from one of the step that outputs an array of files. The glob is ignored and I end up with all files.
I have tried the following:
outputs:
sss_out:
# type: File doesn't work. It has to be a file array
type: File[]
outputSource: sss/cwl_out
outputBinding:
# glob is ignored
glob: "*.xml.xml"
Example:
cwltool https://raw.githubusercontent.com/esanzgar/gluetools-cwl/master/playground/glob_not_working.cwl
Any ideas on how to grab specific files from one workflow step using a 'glob'?
Thanks!