forked from broadinstitute/cromwell
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Language and Version inference (broadinstitute#3676)
Allow language factories to infer appropriateness
- Loading branch information
1 parent
385fe3f
commit 48e191c
Showing
18 changed files
with
140 additions
and
85 deletions.
There are no files selected for viewing
6 changes: 2 additions & 4 deletions
6
centaur/src/main/resources/standardTestCases/cwl_optionals.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
name: cwl_optionals | ||
testFormat: workflowsuccess | ||
workflowType: CWL | ||
workflowTypeVersion: v1.0 | ||
|
||
files { | ||
workflow: cwl_optionals/cwl_optionals.cwl | ||
inputs: cwl_optionals/cwl_optionals.json | ||
} | ||
|
||
metadata { | ||
"submittedFiles.workflowType": CWL | ||
"submittedFiles.workflowTypeVersion": v1.0 | ||
"actualWorkflowLanguage": CWL | ||
"actualWorkflowLanguageVersion": v1.0 | ||
} |
17 changes: 17 additions & 0 deletions
17
centaur/src/main/resources/standardTestCases/draft3_infer_version.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: draft3_infer_version | ||
testFormat: workflowsuccess | ||
# Note: no workflowType specified! | ||
# Note: no workflowTypeVersion specified! | ||
tags: ["wdl_1.0"] | ||
|
||
files { | ||
workflow: wdl_draft3/draft3_infer_version/draft3_infer_version.wdl | ||
} | ||
|
||
metadata { | ||
workflowName: draft3_infer_version | ||
status: Succeeded | ||
"outputs.draft3_infer_version.j": 660 | ||
"actualWorkflowLanguage": WDL | ||
"actualWorkflowLanguageVersion": 1.0 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...main/resources/standardTestCases/wdl_draft3/draft3_infer_version/draft3_infer_version.wdl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
# Some heading commentary... | ||
version 1.0 | ||
|
||
workflow draft3_infer_version { | ||
input { | ||
Int i = 12 | ||
} | ||
|
||
output { | ||
Int j = i * 55 | ||
} | ||
} |
11 changes: 0 additions & 11 deletions
11
centaur/src/main/resources/standardTestCases/workflow_type_and_version_default.test
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
...standardTestCases/workflow_type_and_version_default/workflow_type_and_version_default.wdl
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.