Skip to content

Commit

Permalink
Merge pull request genome#1086 from tmooney/update_cwltool
Browse files Browse the repository at this point in the history
Update python and cwltool version for testing CWL syntax
  • Loading branch information
tmooney authored Jun 21, 2023
2 parents 0d2f354 + 3c948c9 commit 8da2b1c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,12 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install 'setuptools>=18.5'
python -m pip install 'cwltool==1.0.20181217162649'
python -m pip install 'ruamel.yaml==0.15.77'
python -m pip install 'mdutils==1.0.0'
python -m pip install 'PyYAML==5.1.2'
python -m pip install 'cwltool==3.1.20230601100705'
python -m pip install 'ruamel.yaml==0.17.27'
- name: Run cwltool validate
run: |
cd $GITHUB_WORKSPACE/definitions
Expand Down
5 changes: 4 additions & 1 deletion definitions/pipelines/rnaseq_star_fusion_with_xenosplit.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ inputs:
gene_transcript_lookup_table:
type: File
strand:
type: string?
type:
- "null"
- type: enum
symbols: ["first", "second", "unstranded"]
refFlat:
type: File
ribosomal_intervals:
Expand Down
5 changes: 4 additions & 1 deletion definitions/subworkflows/cram_to_cnvkit.cwl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ inputs:
access:
type: File?
method:
type: string?
type:
- "null"
- type: enum
symbols: ["hybrid", "amplicon", "wgs"]
diagram:
type: boolean?
scatter_plot:
Expand Down

0 comments on commit 8da2b1c

Please sign in to comment.