mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
5e18e36895
* Fixes for PR 371 * Fix tags * Add md5sum * Add md5sums for stringtie * Fix tests for modules where subtool = build * Fix pytest_software name conflicts * Change _ to / in test.yml tags * Nope...that didnt work * Fix sequenzautils/bam2seqz tests
24 lines
1,000 B
Text
24 lines
1,000 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { MINIMAP2_ALIGN } from '../../../../software/minimap2/align/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_minimap2_align_single_end {
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
[ file("${launchDir}/tests/data/genomics/sarscov2/illumina/fastq/test_1.fastq.gz", checkIfExists: true) ]
|
|
]
|
|
fasta = file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
|
|
|
|
MINIMAP2_ALIGN ( input, fasta )
|
|
}
|
|
|
|
workflow test_minimap2_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("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true)
|
|
|
|
MINIMAP2_ALIGN ( input, fasta )
|
|
}
|