You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a toy example that requires an exclusive parameter and a regular parameter and it seems to run fine when I try cwl-runner (see copied below). I would like to adapt a tool in Rabix to use the same logic for the input files but it complains:
document.inputs[0].type: should be equal to one of the allowed values: null,boolean,int,long,float,string,File,Directory
I believe it is not happy with type: record
What is the best way to implement exclusive parameters in Rabix?
$> cat exclusive_params.yml
exclusive_parameters:
input_file_2:
class: File
path: ./two_file.txt
another_parameter: just_a_string_for_a_parameter
$> cat exclusive_params.cwl
cwlVersion: v1.0
class: CommandLineTool
inputs:
exclusive_parameters:
type:
- type: record
name: input_file_1
fields:
input_file_1:
type: File
inputBinding:
prefix: -file-one
label: this is a file of type 1
- type: record
name: input_file_2
fields:
input_file_2:
type: File
inputBinding:
prefix: -file-two
label: this is a file of type 2
another_parameter:
type: string
id: input_another_parameter
inputBinding:
position: 1
prefix: -another_parameter
label: This is a regular string parameter.
outputs: []
baseCommand: echo
$> cwl-runner exclusive_params.cwl exclusive_params.yml
/Users/lfaller/playground/venv/bin/cwl-runner 1.0.20181012180214
Resolved 'exclusive_params.cwl' to 'file:///Users/lfaller/playground/exclusive_params.cwl'
[job exclusive_params.cwl] /private/tmp/docker_tmpA5dP3M$ echo \
-file-two \
/private/var/folders/vg/0brt5dt962j9p26_rhxn8_4w0000gn/T/tmpDeAbeL/stge33acf73-7edc-40d4-bd55-46ad2d7dc987/two_file.txt \
-another_parameter \
just_a_string_for_a_parameter
-file-two /private/var/folders/vg/0brt5dt962j9p26_rhxn8_4w0000gn/T/tmpDeAbeL/stge33acf73-7edc-40d4-bd55-46ad2d7dc987/two_file.txt -another_parameter just_a_string_for_a_parameter
[job exclusive_params.cwl] completed success
{}
Final process status is success
I have a toy example that requires an exclusive parameter and a regular parameter and it seems to run fine when I try
cwl-runner
(see copied below). I would like to adapt a tool in Rabix to use the same logic for the input files but it complains:document.inputs[0].type: should be equal to one of the allowed values: null,boolean,int,long,float,string,File,Directory
I believe it is not happy with
type: record
What is the best way to implement exclusive parameters in Rabix?
Edited to add my code in Rabix:
The text was updated successfully, but these errors were encountered: