From 92968970095861e42c63d63883c252ed114d92f1 Mon Sep 17 00:00:00 2001 From: drpatelh Date: Fri, 7 Aug 2020 10:58:24 +0100 Subject: [PATCH] Define options as input --- software/fastqc/meta.yml | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/software/fastqc/meta.yml b/software/fastqc/meta.yml index 61039a34..e97c4cc0 100644 --- a/software/fastqc/meta.yml +++ b/software/fastqc/meta.yml @@ -41,11 +41,29 @@ input: description: | List of input FastQ files of size 1 and 2 for single-end and paired-end data, respectively. + - options: + type: map + description: | + Groovy Map containing module options for passing command-line arguments and + output file paths. output: - - report: + - meta: + type: map + description: | + Groovy Map containing sample information + e.g. [ id:'test', single_end:false ] + - html: type: file description: FastQC report - pattern: "*_fastqc.{zip,html}" + pattern: "*_fastqc.html" + - zip: + type: file + description: FastQC report archive + pattern: "*_fastqc.zip" + - version: + type: file + description: File containing software version + pattern: "*.version.txt" authors: - "@drpatelh" - "@grst"