浏览代码

更新 'tasks/TNseq.wdl'

master
meng 2 年前
父节点
当前提交
5751c916fd
共有 1 个文件被更改,包括 2 次插入4 次删除
  1. +2
    -4
      tasks/TNseq.wdl

+ 2
- 4
tasks/TNseq.wdl 查看文件

@@ -26,16 +26,14 @@ task sentieon_TNseq{
set -exo
export SENTIEON_LICENSE=${SENTIEON_LICENSE}
nt=$(nproc)
REGION=${regions}
NORMAL=${normal_bam}

if [[ -z "$REGION" ]]; then
if [ ${regions} ]; then
INTERVAL="--interval ${regions} --interval_padding ${interval_padding}"
else
INTERVAL=""
fi

if [[ -z "$NORMAL" ]];then
if [ ${normal_bam} ]; then
INPUT="-i ${tumor_bam} -i ${normal_bam}"
SAMPLE="--tumor_sample ${tumor_name} --normal_sample ${normal_name}"
else

正在加载...
取消
保存