mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
30 lines
1.1 KiB
Text
30 lines
1.1 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { EXPANSIONHUNTER } from '../../../modules/expansionhunter/main.nf'
|
|
include { STRANGER } from '../../../modules/stranger/main.nf'
|
|
|
|
|
|
input = [ [ id:'test', gender:'male' ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true),
|
|
]
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
variant_catalog = file(params.test_data['homo_sapiens']['genome']['repeat_expansions'], checkIfExists: true)
|
|
|
|
|
|
workflow test_stranger {
|
|
EXPANSIONHUNTER ( input, fasta, variant_catalog )
|
|
STRANGER ( EXPANSIONHUNTER.out.vcf, variant_catalog )
|
|
}
|
|
|
|
workflow test_stranger_without_optional_variant_catalog {
|
|
EXPANSIONHUNTER ( input, fasta, variant_catalog )
|
|
STRANGER ( EXPANSIONHUNTER.out.vcf, [] )
|
|
}
|
|
|
|
workflow test_stranger_without_optional_variant_catalog_stubs {
|
|
EXPANSIONHUNTER ( input, fasta, variant_catalog )
|
|
STRANGER ( EXPANSIONHUNTER.out.vcf, [] )
|
|
}
|