This is a test version of Biostars. For the public version, visit https://www.biostars.org.
CWL definition modification

This is a block of my cwl file which I would like to modify

    output_zipfile:
    label: Bioset Zipfile
    outputBinding:
      glob:
      - "$(get_output_dir())/*.zip"
    type: File[]

Here the argument is Required and Multivalve

I tried with this

output_zipfile:
    label: Bioset Zipfile
    outputBinding:
      glob:
      - "$(get_output_dir())/*.zip"
    type: 
    - 'null'
    - File
    items : File?

Now it turned into Optional and Single value

My goal is getting Optional and Multivalue

Any suggestion or help would be really appreciated

cwl workflow

0 answers

No answers yet.

Log in to answer this question.