nf-core_modules/tests/modules/bedtools/maskfasta/main.nf

15 lines
470 B
Text
Raw Normal View History

2021-02-08 22:41:10 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_MASKFASTA } from '../../../../modules/bedtools/maskfasta/main.nf' addParams( options: [:] )
2021-02-08 22:41:10 +00:00
workflow test_bedtools_maskfasta {
bed = [ [ id:'test'],
file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
BEDTOOLS_MASKFASTA ( bed, fasta )
2021-02-08 22:41:10 +00:00
}