mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-02 20:52:07 -05:00
Update tests/software/bedtools/maskfasta/main.nf
This commit is contained in:
parent
3f431014a4
commit
28866f3dc7
1 changed files with 3 additions and 4 deletions
|
@ -5,10 +5,9 @@ nextflow.enable.dsl = 2
|
||||||
include { BEDTOOLS_MASKFASTA } from '../../../../software/bedtools/maskfasta/main.nf' addParams( options: [:] )
|
include { BEDTOOLS_MASKFASTA } from '../../../../software/bedtools/maskfasta/main.nf' addParams( options: [:] )
|
||||||
|
|
||||||
workflow test_bedtools_maskfasta {
|
workflow test_bedtools_maskfasta {
|
||||||
def bed,fasta = []
|
def bed = [ [ id:'test'],
|
||||||
bed = [ [ id:'test'],
|
file("${launchDir}/tests/data/bed/C.bed", checkIfExists: true) ]
|
||||||
file("${launchDir}/tests/data/bed/C.bed", checkIfExists: true) ]
|
def fasta = [ file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) ]
|
||||||
fasta = [ file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) ]
|
|
||||||
|
|
||||||
BEDTOOLS_MASKFASTA( bed, fasta )
|
BEDTOOLS_MASKFASTA( bed, fasta )
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue