三引号内对 NextFlow 脚本 shell 命令的注释

comments for nextflow script shell commands inside triple quotes

提问人:statistician_in_training 提问时间:10/11/2023 更新时间:10/11/2023 访问量:33

问:

我想为在nextflow进程中运行的shell命令添加注释。例如



process A_MSC {
    tag "${ comp_id }"
    label (params.LABEL)
    publishDir params.OUTPUT,  mode: 'copy'
   
    input:
    file(reference)
   
    output:
    tuple val(comp_id), path("*.{gz,npy}"), emit: plots


    script:
    """
    echo "==========================="
    echo "Need a comment here"

    """
}

那么回声线放置位置的注释字符是什么 对于这些脚本部分之外的注释,人们会使用 // 或 /*,但如果我在 shell 脚本中使用它们,则会导致失败。

Groovy 网友点评 NextFlow

评论

5赞 dauer 10/11/2023
“”“之间的代码是 bash,所以它应该是标准的 bash 方式来做评论,用主题标签固定该行: #My 评论在这里

答: 暂无答案