Skip to content

Commit

Permalink
Merge pull request #37 from garyluu/feature/fileWrapper
Browse files Browse the repository at this point in the history
Change to FileWrapper
  • Loading branch information
jaeddy committed Aug 17, 2018
2 parents b6eb532 + 15b3e38 commit e48c26b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions synorchestrator/orchestrator.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ def fetch_checker(trs, workflow_id):

def build_checker_request(checker_descriptor, checker_tests):
if (checker_descriptor['type'] == 'CWL' and
re.search('run:', checker_descriptor['descriptor'])):
checker_descriptor['descriptor'] = get_packed_cwl(checker_descriptor['url'])
re.search('run:', checker_descriptor['content'])):
checker_descriptor['content'] = get_packed_cwl(checker_descriptor['url'])

checker_request = build_wes_request(
workflow_descriptor=checker_descriptor['descriptor'],
workflow_descriptor=checker_descriptor['content'],
workflow_params=checker_tests[0]['url'],
workflow_type=checker_descriptor['type']
)
Expand Down

0 comments on commit e48c26b

Please sign in to comment.