Parcourir la source

test15

tags/v0.3.0
Haonan917 il y a 1 an
Parent
révision
6da4b779b4
1 fichiers modifiés avec 5 ajouts et 5 suppressions
  1. +5
    -5
      workflow.wdl

+ 5
- 5
workflow.wdl Voir le fichier

@@ -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,

Chargement…
Annuler
Enregistrer