From 312bf85f704b6884e09956e17610d8ada51ef9d7 Mon Sep 17 00:00:00 2001 From: FriederikeHanssen Date: Tue, 23 Feb 2021 11:26:54 +0100 Subject: [PATCH] use reasonable option params --- tests/software/seqkit/split2/main.nf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/software/seqkit/split2/main.nf b/tests/software/seqkit/split2/main.nf index 4377cac2..e356aa7c 100644 --- a/tests/software/seqkit/split2/main.nf +++ b/tests/software/seqkit/split2/main.nf @@ -2,8 +2,8 @@ nextflow.enable.dsl = 2 -include { SEQKIT_SPLIT2_LENGTH } from '../../../../software/SEQKIT/SPLIT2/main.nf' addParams( options: ['args': '--by-length 2'] ) -include { SEQKIT_SPLIT2_SIZE } from '../../../../software/SEQKIT/SPLIT2/main.nf' addParams( options: ['args': '--by-size 2 ' ] ) +include { SEQKIT_SPLIT2_LENGTH } from '../../../../software/SEQKIT/SPLIT2/main.nf' addParams( options: ['args': '--by-length 26K'] ) +include { SEQKIT_SPLIT2_SIZE } from '../../../../software/SEQKIT/SPLIT2/main.nf' addParams( options: ['args': '--by-size 5000 ' ] ) include { SEQKIT_SPLIT2_PART } from '../../../../software/SEQKIT/SPLIT2/main.nf' addParams( options: ['args': '--by-part 2 '] ) workflow test_seqkit_split2_length_single_end {