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