Skip to content
Snippets Groups Projects
  • Marcel Loose's avatar
    2b7fc297
    Fix the mapping between CWL inputs, which are in JSON format, and Python... · 2b7fc297
    Marcel Loose authored
    Fix the mapping between CWL inputs, which are in JSON format, and Python types, for CWL steps that contain inline Python script.
    
    The solution is to convert the CWL `$(inputs)` once to a Python `dict`, by using the `json.loads()` function, passing the `$(inputs)` as a raw Python string. Next, any input argument can be accessed as an entry in a Python `dict`.
    
    Also, to avoid potential "Argument list too long" errors, all inline Python scripts that expand the `$(inputs)` argument are now automatically turned into a script *file*, instead of being passed as a (potentially huge) string on the command line.
    
    
    Former-commit-id: 250aa9d1
    2b7fc297
    History
    Fix the mapping between CWL inputs, which are in JSON format, and Python...
    Marcel Loose authored
    Fix the mapping between CWL inputs, which are in JSON format, and Python types, for CWL steps that contain inline Python script.
    
    The solution is to convert the CWL `$(inputs)` once to a Python `dict`, by using the `json.loads()` function, passing the `$(inputs)` as a raw Python string. Next, any input argument can be accessed as an entry in a Python `dict`.
    
    Also, to avoid potential "Argument list too long" errors, all inline Python scripts that expand the `$(inputs)` argument are now automatically turned into a script *file*, instead of being passed as a (potentially huge) string on the command line.
    
    
    Former-commit-id: 250aa9d1
Code owners
Assign users and groups as approvers for specific file changes. Learn more.