nf-core_modules/tests/modules/seqkit/pair/main.nf
Sateesh 4c59984d7b
Seqkit pair (#1348)
* add seqkit pair module

* local tests

* local tests

* fix workflow name

* fix workflow name

* fix version indentation

* fix version indentation

* fix version indentation

* fix review comments

* fix review comments

* fix github usernames

* minor fix

* add meta unpaired output

Co-authored-by: Peri <rrx8@cdc.gov>
2022-02-24 15:07:35 +01:00

16 lines
455 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEQKIT_PAIR } from '../../../../modules/seqkit/pair/main.nf'
workflow test_seqkit_pair {
input = [
[ id:'test', single_end:false ], // meta map
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
]
SEQKIT_PAIR ( input )
}