瀏覽代碼

test15

tags/v0.3.0
Haonan917 1 年之前
父節點
當前提交
6da4b779b4
共有 1 個檔案被更改,包括 5 行新增5 行删除
  1. +5
    -5
      workflow.wdl

+ 5
- 5
workflow.wdl 查看文件

@@ -69,10 +69,10 @@ workflow {{ project_name }} {
String SMALLcluster_config

# Fastq is not null, which means starting from fastq
if (!defined(fastq_1_D5) && !defined(fastq_2_D5)
&& !defined(fastq_1_D6) && !defined(fastq_2_D6)
&& !defined(fastq_1_F7) && !defined(fastq_2_F7)
&& !defined(fastq_1_M8) && !defined(fastq_2_M8)) {
if (defined(fastq_1_D5) && defined(fastq_2_D5)
&& defined(fastq_1_D6) && defined(fastq_2_D6)
&& defined(fastq_1_F7) && defined(fastq_2_F7)
&& defined(fastq_1_M8) && defined(fastq_2_M8)) {

call mapping.mapping as mapping_D5 {
input:
@@ -732,7 +732,7 @@ workflow {{ project_name }} {
}
# Fastq is null, check if starts with vcf
if (!defined(vcf_D5) && !defined(vcf_D6) && !defined(vcf_F7) && !defined(vcf_M8) ) {
if (defined(vcf_D5) && defined(vcf_D6) && defined(vcf_F7) && defined(vcf_M8) ) {
call rename_vcf.rename_vcf as rename_vcf{
input:
vcf_D5=vcf_D5,

Loading…
取消
儲存