mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
4c59984d7b
* 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>
16 lines
455 B
Text
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 )
|
|
}
|