Skip to content

Commit

Permalink
Merge pull request #84 from rabix/bugfix/samplesheet_input_and_nf_core
Browse files Browse the repository at this point in the history
NF schema is built only if it's missing
  • Loading branch information
pavlemarinkovic authored Jun 3, 2024
2 parents 09e8e35 + 45a1689 commit e9eb2da
Show file tree
Hide file tree
Showing 55 changed files with 4 additions and 3 deletions.
Empty file modified .github/dependabot.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/codeql-analysis.yml
100644 → 100755
Empty file.
Empty file modified .github/workflows/tests.yml
100644 → 100755
Empty file.
Empty file modified .gitignore
100644 → 100755
Empty file.
Empty file modified LICENSE
100644 → 100755
Empty file.
Empty file modified MANIFEST.in
100644 → 100755
Empty file.
Empty file modified Readme.md
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion requirements.txt
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ruamel.yaml >= 0.16
sevenbridges-python >= 2.0
nf-core==2.1
wrabbit==0.1.2
wrabbit==0.1.3
cwlformat
packaging
Empty file modified sbpack/__init__.py
100644 → 100755
Empty file.
Empty file modified sbpack/lib.py
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/Readme.md
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/__init__.py
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/constants.py
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/copy_app.py
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/manifest.py
100644 → 100755
Empty file.
3 changes: 2 additions & 1 deletion sbpack/noncwl/nextflow.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,8 @@ def main():
else:
# build schema
# Do this only if the nextflow_schema.json is missing
nf_wrapper.nf_schema_build()
if not nf_wrapper.nf_schema_path:
nf_wrapper.nf_schema_build()

# Create app
nf_wrapper.generate_sb_app(
Expand Down
Empty file modified sbpack/noncwl/utils.py
100644 → 100755
Empty file.
Empty file modified sbpack/noncwl/wdl.py
100644 → 100755
Empty file.
Empty file modified sbpack/pack.py
100644 → 100755
Empty file.
Empty file modified sbpack/schemadef.py
100644 → 100755
Empty file.
Empty file modified sbpack/unpack.py
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion sbpack/version.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2024.5.21rc1"
__version__ = "2024.6.3rc1"
Empty file modified setup.py
100644 → 100755
Empty file.
Empty file modified test-requirements.txt
100644 → 100755
Empty file.
Empty file modified tests/lib.js
100644 → 100755
Empty file.
Empty file modified tests/remote-cwl/tool1.cwl
100644 → 100755
Empty file.
Empty file modified tests/remote-cwl/tool2.cwl
100644 → 100755
Empty file.
Empty file modified tests/remote-cwl/wf1.cwl
100644 → 100755
Empty file.
Empty file modified tests/test_localpack.py
100644 → 100755
Empty file.
Empty file modified tests/test_packing.py
100644 → 100755
Empty file.
Empty file modified tests/test_pulling.py
100644 → 100755
Empty file.
Empty file modified tests/test_schemadefs.py
100644 → 100755
Empty file.
Empty file modified tests/test_validation_battery.py
100644 → 100755
Empty file.
Empty file modified tests/tools/clt1.cwl
100644 → 100755
Empty file.
Empty file modified tests/tools/clt2.cwl
100644 → 100755
Empty file.
Empty file modified tests/tools/clt3.cwl
100644 → 100755
Empty file.
Empty file modified tests/types/array.yml
100644 → 100755
Empty file.
Empty file modified tests/types/recursive.yml
100644 → 100755
Empty file.
Empty file modified tests/types/singletype.yml
100644 → 100755
Empty file.
Empty file modified tests/types/singletype2.yml
100644 → 100755
Empty file.
Empty file modified tests/types/testtypes.yml
100644 → 100755
Empty file.
Empty file modified tests/wf2.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/count-lines16-wf.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/import-in-type.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/scatter-wf4.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/type-import.yaml
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf-with-git.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf1.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf2.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf3.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf4.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf5.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf6.cwl
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf6.json
100644 → 100755
Empty file.
Empty file modified tests/workflows/wf6_with_ids.json
100644 → 100755
Empty file.

0 comments on commit e9eb2da

Please sign in to comment.