mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
e080f4c8ac
* fix: remove left-over unnecessary code * Adds support for meta lists for unzip and untar * Fix test inputs * Update all modules to support extraction of decompressed file from untar/unzip new meta + file tuple * Update all modules to support extraction of decompressed file from untar/unzip new meta + file tuple * Fix MALTEXTRACT/AMPS * Fix further modules * Fix cellranger * Apply suggestions from code review Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
28 lines
879 B
Text
28 lines
879 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UNTAR } from '../../../../modules/untar/main.nf'
|
|
include { SRATOOLS_FASTERQDUMP } from '../../../../modules/sratools/fasterqdump/main.nf'
|
|
|
|
workflow test_sratools_fasterqdump_single_end {
|
|
|
|
archive = [ [], file(params.test_data['sarscov2']['illumina']['SRR13255544_tar_gz'], checkIfExists: true) ]
|
|
UNTAR ( archive )
|
|
|
|
def input = Channel.of([ id:'test_single_end', single_end:true ])
|
|
.combine(UNTAR.out.untar.map{ it[1] })
|
|
|
|
SRATOOLS_FASTERQDUMP ( input )
|
|
}
|
|
|
|
workflow test_sratools_fasterqdump_paired_end {
|
|
|
|
archive = [ [], file(params.test_data['sarscov2']['illumina']['SRR11140744_tar_gz'], checkIfExists: true) ]
|
|
UNTAR ( archive )
|
|
|
|
def input = Channel.of([ id:'test_paired_end', single_end:false ])
|
|
.combine(UNTAR.out.untar.map{ it[1] })
|
|
|
|
SRATOOLS_FASTERQDUMP ( input )
|
|
}
|