2021-02-17 11:25:41 -05:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-07-07 05:10:18 -04:00
|
|
|
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_LENGTH } from '../../../../modules/seqkit/split2/main.nf' addParams( options: ['args': '--by-length 8K'] )
|
|
|
|
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_SIZE } from '../../../../modules/seqkit/split2/main.nf' addParams( options: ['args': '--by-size 50' ] )
|
|
|
|
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_PART } from '../../../../modules/seqkit/split2/main.nf' addParams( options: ['args': '--by-part 3'] )
|
2021-02-17 11:25:41 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_single_end_length {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-17 11:25:41 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
SEQKIT_SPLIT2_LENGTH ( input )
|
|
|
|
}
|
2021-02-17 11:25:41 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_single_end_size {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
SEQKIT_SPLIT2_SIZE ( input )
|
|
|
|
}
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_single_end_part {
|
2021-02-22 16:43:32 -05:00
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-22 16:43:32 -05:00
|
|
|
|
|
|
|
SEQKIT_SPLIT2_PART ( input )
|
|
|
|
}
|
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_paired_end_length {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
SEQKIT_SPLIT2_LENGTH ( input )
|
|
|
|
}
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_paired_end_size {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
SEQKIT_SPLIT2_SIZE ( input )
|
|
|
|
}
|
2021-02-22 16:43:32 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
workflow test_seqkit_split2_paired_end_part {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 12:05:43 -04:00
|
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true) ]
|
2021-03-24 05:53:41 -04:00
|
|
|
]
|
2021-02-17 11:25:41 -05:00
|
|
|
|
2021-02-23 08:09:46 -05:00
|
|
|
SEQKIT_SPLIT2_PART ( input )
|
2021-03-15 08:16:43 -04:00
|
|
|
}
|