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/fastq2fasta.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/fastq2fasta.scm')
-rw-r--r-- | scripts/fastq2fasta.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/fastq2fasta.scm b/scripts/fastq2fasta.scm index 6fa985c..590a535 100644 --- a/scripts/fastq2fasta.scm +++ b/scripts/fastq2fasta.scm @@ -53,12 +53,10 @@ "-f" ref-fasta "--threads" threads "-") #:other '((stdout . "normalized.bcf")))) (list (output "normalized" - #:type 'File #:source "bcftools_norm/stdout"))) (command "bcftools_index_after_normalization" (list "bcftools" "index" (input "normalized")) #:outputs (list (output "index_after_normalization" - #:type 'File #:binding '((glob . "$(inputs.normalized.basename)")) #:other '((secondary-files . #(".csi"))))) #:other `((hints (Initial-work-dir-requirement @@ -74,7 +72,6 @@ (command "bcftools_index_after_qc" (list "bcftools" "index" (input "bcftools_view_qc_output_vcf")) #:outputs (list (output "index_after_qc" - #:type 'File #:binding '((glob . "$(inputs.bcftools_view_qc_output_vcf.basename)")) #:other '((secondary-files . #(".csi"))))) #:other `((hints (Initial-work-dir-requirement @@ -90,10 +87,8 @@ (list "sed" "s/^>.*/>$(inputs.sample_id)/g") #:additional-inputs (list sample-id))) (list (output "out_fasta" - #:type 'File #:source "set_sample_id/stdout")))) (list (output "out_fasta" - #:type 'File #:source "consensus/out_fasta")))) (write-cwl fastq2fasta "workflows/fastq2fasta/fastq2fasta.cwl") |