Skip to content

Commit

Permalink
use CWL version v1.2 (final not dev)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Mar 24, 2022
1 parent 8739b32 commit 42469c0
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
Assembly'
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
MCRA'
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
RecSel'
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
S-gene AA'
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
SE Variation'
inputs:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: COVID-19:
read pre-processing from SRA data'
inputs:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_workflow_cwl-interface.cwl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cwlVersion: v1.0
cwlVersion: v1.2
class: Workflow
label: Abstract CWL workflow automatically generated from a Galaxy workflow v2 file
inputs:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_workflow_cwl_automatic.cwl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.0
cwlVersion: v1.2
inputs:
0/output:
format: Input files have no info about format
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_workflow_galaxy.cwl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class: Workflow
cwlVersion: v1.2.0-dev2
cwlVersion: v1.2
doc: 'Abstract CWL Automatically generated from the Galaxy workflow file: Simple workflow'
inputs:
reads_1:
Expand Down
4 changes: 2 additions & 2 deletions galaxy2cwl/get_cwl_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def process_format1_json(wf_dict):
step_cwl_entry['run'] = step_run_dict
step_cwl_entry['out'] = step_wf_out
cwl_out['steps']=steps
cwl_out['cwlVersion']='v1.2.0-dev2'
cwl_out['cwlVersion']='v1.2'
cwl_out['class']='Workflow'
cwl_out['doc']=cwl_doc
cwl_out['inputs']=wf_inputs
Expand Down Expand Up @@ -268,7 +268,7 @@ def process_format2_yaml(wf_dict):
wf_outputs[output]=output_details
cwl_out={}
cwl_out['steps']=steps
cwl_out['cwlVersion']='v1.2.0-dev1'
cwl_out['cwlVersion']='v1.2'
cwl_out['class']='Workflow'
cwl_out['doc']=cwl_doc
cwl_out['inputs']=wf_inputs
Expand Down

0 comments on commit 42469c0

Please sign in to comment.