nf-core_modules/tests/software/seqkit/split2/main.nf
Harshil Patel acb1a12a56
Re-organise all test data (#354)
* Re-organise all test data

* Fix ECLint

* Fix ECLint agaaainn

* Now is not the time EClint
2021-03-24 09:53:41 +00:00

55 lines
2.1 KiB
Text

#!/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' ] )
include { SEQKIT_SPLIT2 as SEQKIT_SPLIT2_PART } from '../../../../software/seqkit/split2/main.nf' addParams( options: ['args': '--by-part 3'] )
workflow test_seqkit_split2_single_end_length {
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_1.fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_LENGTH ( input )
}
workflow test_seqkit_split2_single_end_size {
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_1.fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_SIZE ( input )
}
workflow test_seqkit_split2_single_end_part {
input = [ [ id:'test', single_end:true ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_1.fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_PART ( input )
}
workflow test_seqkit_split2_paired_end_length {
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_[1-2].fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_LENGTH ( input )
}
workflow test_seqkit_split2_paired_end_size {
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}//tests/data/genomics/sarscov2/illumina/fastq/test_[1-2].fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_SIZE ( input )
}
workflow test_seqkit_split2_paired_end_part {
input = [ [ id:'test', single_end:false ], // meta map
file("${launchDir}//tests/data/genomics/sarscov2/illumina/fastq/test_[1-2].fastq.gz", checkIfExists: true)
]
SEQKIT_SPLIT2_PART ( input )
}