diff options
author | Arun Isaac | 2021-03-17 17:09:35 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-17 17:09:35 +0530 |
commit | f8a9462c56b481d34af5d142fb746974c7d7bc5c (patch) | |
tree | 406de67f7b70d53bd7ec35a17781cf1f2f5da9aa /scripts/variant-calling-bowtie-bwa-mem.scm | |
parent | c43a223cf50b6aa88bbeb335f995ac96606482f7 (diff) | |
download | bh20-seq-resource-f8a9462c56b481d34af5d142fb746974c7d7bc5c.tar.gz bh20-seq-resource-f8a9462c56b481d34af5d142fb746974c7d7bc5c.tar.lz bh20-seq-resource-f8a9462c56b481d34af5d142fb746974c7d7bc5c.zip |
Do not specify outputs to be of File type.
Diffstat (limited to 'scripts/variant-calling-bowtie-bwa-mem.scm')
-rw-r--r-- | scripts/variant-calling-bowtie-bwa-mem.scm | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/scripts/variant-calling-bowtie-bwa-mem.scm b/scripts/variant-calling-bowtie-bwa-mem.scm index 598754b..88498f6 100644 --- a/scripts/variant-calling-bowtie-bwa-mem.scm +++ b/scripts/variant-calling-bowtie-bwa-mem.scm @@ -37,13 +37,11 @@ (list "samtools" "markdup" "-" "-") #:other '((stdout . "dedup.bam")))) (list (output "dedup_bam" - #:type 'File #:source "samtools_markdup/stdout"))) (command "samtools_index" (list "samtools" "index" (input "dedup_bam")) #:outputs (list (output "indexed_dedup_bam" - #:type 'File #:binding '((glob . "$(inputs.dedup_bam.basename)")) #:other '((secondary-files . #(".bai"))))) #:other `((hints (Initial-work-dir-requirement @@ -60,17 +58,15 @@ "-Oz") #:other `((stdout . ,(string-append prefix "_output.vcf.gz"))))) (list (output "vcf" - #:type 'File #:source "bcftools_view/stdout"))) (command "tabix" - #:outputs (list (output "indexed_vcf" #:type 'File (list "tabix" (input "vcf")) + #:outputs (list (output "indexed_vcf" #:binding '((glob . "$(inputs.vcf.basename)")) #:other '((secondary-files . #(".tbi"))))) #:other `((hints (Initial-work-dir-requirement (listing . #("$(inputs.vcf)"))))))) (list (output (string-append prefix "_output") - #:type 'File #:source "tabix/indexed_vcf")))) (define variant-calling @@ -88,10 +84,8 @@ #:outputs (list (output "bwa_mem_input" #:type 'stdout))) (bam2vcf "bwa_mem")) (list (output "bowtie_output" - #:type 'File #:source "bowtie_bam2vcf/bowtie_output") (output "bwa_mem_output" - #:type 'File #:source "bwa_mem_bam2vcf/bwa_mem_output")))) (write-cwl variant-calling |