mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
f3ffa69b8d
* feat(dragmap): Add initial hastable module * feat(dragmap): Add initial align module * test(dragmap): Remove md5sum Forgot sam files have a header. Might pipe this through samtools. * build(dragmap): Add mulled container * chore(dragmap): Update prefix * feat(dragmap): Output a bam file * feat(dragmap): Add log files * Update modules/dragmap/align/meta.yml Co-authored-by: Jose Espinosa-Carrasco <kadomu@gmail.com>
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { DRAGMAP_HASHTABLE } from '../../../../modules/dragmap/hashtable/main.nf'
|
|
include { DRAGMAP_ALIGN } from '../../../../modules/dragmap/align/main.nf'
|
|
|
|
workflow test_dragmap_align_single_end {
|
|
input = [
|
|
[ id:'test', single_end:true ], // meta map
|
|
[
|
|
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true)
|
|
]
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
DRAGMAP_HASHTABLE ( fasta )
|
|
DRAGMAP_ALIGN ( input, DRAGMAP_HASHTABLE.out.hashmap )
|
|
}
|
|
|
|
workflow test_dragmap_align_paired_end {
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
[
|
|
file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
|
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true)
|
|
]
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
DRAGMAP_HASHTABLE ( fasta )
|
|
DRAGMAP_ALIGN ( input, DRAGMAP_HASHTABLE.out.hashmap )
|
|
}
|