Skip to content

Commit

Permalink
make output arguments optional
Browse files Browse the repository at this point in the history
  • Loading branch information
sainirmayi committed Aug 5, 2024
1 parent 2f96b46 commit 08b168a
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/trimgalore/config.vsh.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ argument_groups:
default: trimmed_output
- name: --trimmed_r1
type: file
required: true
required: false
description: Output file for read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: read_1.fastq
Expand All @@ -248,6 +248,7 @@ argument_groups:
example: read_2.fastq
- name: --trimming_report_r1
type: file
required: false
description: Trimming report for read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: read_1.trimming_report.txt
Expand All @@ -259,6 +260,7 @@ argument_groups:
example: read_2.trimming_report.txt
- name: --trimmed_fastqc_html_1
type: file
required: false
description: FastQC report for trimmed (single-end) reads (or read 1 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: read_1.fastqc.html
Expand All @@ -270,6 +272,7 @@ argument_groups:
example: read_2.fastqc.html
- name: --trimmed_fastqc_zip_1
type: file
required: false
description: FastQC results for trimmed (single-end) reads (or read 1 for paired-end). Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: read_1.fastqc.zip
Expand All @@ -281,13 +284,13 @@ argument_groups:
example: read_2.fastqc.zip
- name: --unpaired_r1
type: file
required: true
required: false
description: Output file for unpired read 1. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: unpaired_read_1.fastq
- name: --unpaired_r2
type: file
required: true
required: false
description: Output file for unpaired read 2. Only works when 1 file (single-end) or 2 files (paired-end) are specified, but not for longer lists.
direction: output
example: unpaired_read_2.fastq
Expand Down

0 comments on commit 08b168a

Please sign in to comment.