mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
393dbd6dda
* Update main.nf * Update meta.yml * Re-add logos as not staged in a way that works with MultiQC config files * Fix when only files or multiple directories * Add test for only-files tar * Fix bash check
34 lines
643 B
Text
34 lines
643 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UNTAR } from '../../../modules/untar/main.nf'
|
|
|
|
workflow test_untar {
|
|
input = [
|
|
[],
|
|
file(params.test_data['sarscov2']['genome']['kraken2_tar_gz'], checkIfExists: true)
|
|
]
|
|
|
|
UNTAR ( input )
|
|
}
|
|
|
|
|
|
workflow test_untar_different_output_path {
|
|
input = [
|
|
[],
|
|
file(params.test_data['homo_sapiens']['illumina']['test_flowcell'], checkIfExists: true)
|
|
]
|
|
|
|
UNTAR ( input )
|
|
}
|
|
|
|
|
|
workflow test_untar_onlyfiles {
|
|
input = [
|
|
[],
|
|
file(params.test_data['generic']['tar']['tar_gz'], checkIfExists: true)
|
|
]
|
|
|
|
UNTAR ( input )
|
|
}
|