mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
37 lines
1.2 KiB
Text
37 lines
1.2 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { HAPPY_PREPY } from '../../../../modules/happy/prepy/main.nf'
|
|
|
|
workflow test_happy_prepy_vcf {
|
|
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome21_indels_vcf_gz'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
|
]
|
|
|
|
fasta = Channel.value([
|
|
file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
|
])
|
|
|
|
HAPPY_PREPY ( input, fasta )
|
|
}
|
|
|
|
workflow test_happy_prepy_gvcf {
|
|
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome_vcf'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['genome']['genome_bed'], checkIfExists: true)
|
|
]
|
|
|
|
fasta = Channel.value([
|
|
file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
|
])
|
|
|
|
HAPPY_PREPY ( input, fasta )
|
|
}
|