Entering edit mode
7.4 years ago
kevin.o.oluoch
▴
70
Is there a way in Common Workflow Language, to specify one or more values for a given Command line tool input, that will make
./echo.cwl --cheers Hello World!
similar to,
./echo.cwl --cheers "Hello World!"
./echo.cwl --cheers Hello World!
raises the following error ./echo.cwl error : unrecognized arguments: World!
Hello kevin.o.oluoch,
Is this a question about the CWL reference implementation (
cwltool
)'s dynamic command line interface ability, or about making aCommandLineTool
that generates command lines in this matter?making a
CommandLineTool
that generates command lines. But i'd appreciate an implementation specific answer, if this is not possible.