1. 问题
    2. 命令的输出在哪里?
    3. 如何保存命令的输出信息?
    4. 目标
    5. 学习如何描述和处理工具的输出。

    工具的输出是运行工具后应该返回的输出参数列表。每个参数都有一个用于参数名称的id,以及描述对该参数有效的值类型的类型。
    当一个工具在CWL下运行时,开始的工作目录是指定的输出目录。底层的工具或脚本必须以在输出目录中创建的文件的形式记录其结果。CWL工具返回的输出参数要么是输出文件本身,要么来自于检查这些文件的内容。
    下面的示例进行演示如何返回从tar文件中提取的文件。

    向baseCommand传递强制性参数 在前面的示例中,baseCommand只是一个字符串,所有参数都作为CWL输入传递。我们可以使用字符串数组代替单个字符串。第一个元素是要运行的命令,任何后续元素都是强制性的命令行参数

    tar.cwl

    1. #!/usr/bin/env cwl-runner
    2. cwlVersion: v1.0
    3. class: CommandLineTool
    4. baseCommand: [tar, --extract]
    5. inputs:
    6. tarfile:
    7. type: File
    8. inputBinding:
    9. prefix: --file
    10. outputs:
    11. example_out:
    12. type: File
    13. outputBinding:
    14. glob: hello.txt

    tar-job.yml

    1. tarfile:
    2. class: File
    3. path: hello.tar

    接下来,为示例创建一个tar文件,并在命令行中使用cwl-runner调用输入对象:

    1. $ touch hello.txt && tar -cvf hello.tar hello.txt
    2. $ cwl-runner tar.cwl tar-job.yml
    3. [job tar.cwl] /tmp/tmpqOeawQ$ tar \
    4. --extract --file \
    5. /tmp/tmpGDk8Y1/stg80bbad20-494d-47af-8075-dffc32df03a3/hello.tar
    6. [job tar.cwl] completed success
    7. {
    8. "example_out": {
    9. "location": "file:///home/me/cwl/user_guide/hello.txt",
    10. "basename": "hello.txt",
    11. "class": "File",
    12. "checksum": "sha1$da39a3ee5e6b4b0d3255bfef95601890afd80709",
    13. "size": 0,
    14. "path": "/home/me/cwl/user_guide/hello.txt"
    15. }
    16. }
    17. Final process status is success

    字段outputBinding描述如何设置每个输出参数的值。

    1. outputs:
    2. example_out:
    3. type: File
    4. outputBinding:
    5. glob: hello.txt

    glob字段由输出目录中的文件名称组成。如果你事先不知道文件名,你可以使用通配符模式,如glob: ‘*.txt’。