浏览代码

Update: inputs

tags/v0.1.2
YaqingLiu 4 年前
父节点
当前提交
eb14b9b267
共有 2 个文件被更改,包括 4 次插入6 次删除
  1. +0
    -2
      tasks/BQSR.wdl
  2. +4
    -4
      workflow.wdl

+ 0
- 2
tasks/BQSR.wdl 查看文件

String cluster_config String cluster_config
String disk_size String disk_size
command <<< command <<<
set -o pipefail set -o pipefail
set -e set -e
${SENTIEON_INSTALL_DIR}/bin/sentieon driver -t $nt --algo QualCal --plot --before ${sample}_recal_data.table --after ${sample}_recal_data.table.post ${sample}_recal_data.csv ${SENTIEON_INSTALL_DIR}/bin/sentieon driver -t $nt --algo QualCal --plot --before ${sample}_recal_data.table --after ${sample}_recal_data.table.post ${sample}_recal_data.csv
${SENTIEON_INSTALL_DIR}/bin/sentieon plot bqsr -o ${sample}_bqsrreport.pdf ${sample}_recal_data.csv ${SENTIEON_INSTALL_DIR}/bin/sentieon plot bqsr -o ${sample}_bqsrreport.pdf ${sample}_recal_data.csv
>>> >>>
runtime { runtime {

+ 4
- 4
workflow.wdl 查看文件



String disk_size String disk_size
String cluster_config String cluster_config
Boolean haplotyper Boolean haplotyper
Boolean tnseq Boolean tnseq
Boolean tnscope Boolean tnscope
Boolean varscan Boolean varscan


if ( tumor_fastq_1 != "" ) {
if (tumor_fastq_1!= "") {
call mapping.mapping as tumor_mapping { call mapping.mapping as tumor_mapping {
input: input:
group=sample_id + '_tumor', group=sample_id + '_tumor',
disk_size=disk_size, disk_size=disk_size,
cluster_config=cluster_config cluster_config=cluster_config
} }
}
}å


call mapping.mapping as normal_mapping { call mapping.mapping as normal_mapping {
input: input:
group=sample_id + '_normal', group=sample_id + '_normal',
sample=sample_id + '_normal', sample=sample_id + '_normal',
fastq_1=normal_fastq_1,
fastq_1=normal_fastq_1,å
fastq_2=normal_fastq_2, fastq_2=normal_fastq_2,
SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR, SENTIEON_INSTALL_DIR=SENTIEON_INSTALL_DIR,
SENTIEON_LICENSE=SENTIEON_LICENSE, SENTIEON_LICENSE=SENTIEON_LICENSE,

正在加载...
取消
保存