nf-core_modules/tests/software/seqkit/split2/main.nf

56 lines
2.1 KiB
Text
Raw Normal View History

2021-02-17 16:25:41 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_LENGTH } from '../../../../software/seqkit/split2/main.nf' addParams( options: ['args': '--by-length 8K'] )
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_SIZE } from '../../../../software/seqkit/split2/main.nf' addParams( options: ['args': '--by-size 50' ] )
2021-02-24 08:53:11 +00:00
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_PART } from '../../../../software/seqkit/split2/main.nf' addParams( options: ['args': '--by-part 3'] )
2021-02-17 16:25:41 +00:00
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_single_end_length {
def input = []
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_1.fastq.gz", checkIfExists: true) ]
2021-02-17 16:25:41 +00:00
2021-02-23 13:09:46 +00:00
SEQKIT_SPLIT2_LENGTH ( input )
}
2021-02-17 16:25:41 +00:00
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_single_end_size {
def input = []
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_1.fastq.gz", checkIfExists: true) ]
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
SEQKIT_SPLIT2_SIZE ( input )
}
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_single_end_part {
2021-02-22 21:43:32 +00:00
def input = []
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_1.fastq.gz", checkIfExists: true) ]
2021-02-22 21:43:32 +00:00
SEQKIT_SPLIT2_PART ( input )
}
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_paired_end_length {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/fastq/test_[1-2].fastq.gz", checkIfExists: true) ]
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
SEQKIT_SPLIT2_LENGTH ( input )
}
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_paired_end_size {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}//tests/data/genomics/sarscov2/fastq/test_[1-2].fastq.gz", checkIfExists: true) ]
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
SEQKIT_SPLIT2_SIZE ( input )
}
2021-02-22 21:43:32 +00:00
2021-02-23 13:09:46 +00:00
workflow test_seqkit_split2_paired_end_part {
def input = []
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}//tests/data/genomics/sarscov2/fastq/test_[1-2].fastq.gz", checkIfExists: true) ]
2021-02-17 16:25:41 +00:00
2021-02-23 13:09:46 +00:00
SEQKIT_SPLIT2_PART ( input )
}