提问人:statistician_in_training 提问时间:10/11/2023 更新时间:10/11/2023 访问量:33
三引号内对 NextFlow 脚本 shell 命令的注释
comments for nextflow script shell commands inside triple quotes
问:
我想为在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 脚本中使用它们,则会导致失败。
答: 暂无答案
评论