nf-core_modules/tests/software/bedtools/getfasta/main.nf

13 lines
449 B
Text
Raw Normal View History

2021-02-09 16:56:51 +00:00
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_GETFASTA } from '../../../../software/bedtools/getfasta/main.nf' addParams( options: [:] )
workflow test_bedtools_getfasta {
bed = [ file("${launchDir}/tests/data/genomics/sarscov2/genome/bed/test.bed", checkIfExists: true) ]
fasta = [ file("${launchDir}/tests/data/genomics/sarscov2/genome/genome.fasta", checkIfExists: true) ]
2021-02-09 16:56:51 +00:00
BEDTOOLS_GETFASTA ( bed, fasta )
2021-02-09 16:56:51 +00:00
}