Skip to content

Commit

Permalink
add folder cwl_app for the CWLApp package
Browse files Browse the repository at this point in the history
  • Loading branch information
NishchayKarle committed Apr 24, 2024
1 parent a10a1e7 commit 4b6eef9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions cwl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from cwl.cwl_app import CWLApp
2 changes: 1 addition & 1 deletion cwl/cwl_app/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""This package provides a CWLApp class to run CWL Command Line Tools."""

from cwl.cwl_app import CWLApp
from cwl.cwl_app.cwl_app import CWLApp

__all__ = ['CWLApp']
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""This package contains the tests for the CWLApp class."""

from cwl.cwl_app import CWLApp
from cwl import CWLApp
2 changes: 1 addition & 1 deletion tests/test_invalid_cwl_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import pytest

from cwl.cwl_app import CWLApp
from cwl import CWLApp

invalid_cwl_files = os.path.join(os.getcwd(), "tests", "invalid-cwl-files")

Expand Down
2 changes: 1 addition & 1 deletion tools/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import os

from cwl.cwl_app import CWLApp
from cwl import CWLApp

# Create CommandLineTool objects CWL files

Expand Down

0 comments on commit 4b6eef9

Please sign in to comment.