mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-18 02:46:13 -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: [:] )
|
||||
|
||||
workflow test_bedtools_maskfasta {
|
||||
def bed,fasta = []
|
||||
bed = [ [ id:'test'],
|
||||
def bed = [ [ id:'test'],
|
||||
file("${launchDir}/tests/data/bed/C.bed", checkIfExists: true) ]
|
||||
fasta = [ file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) ]
|
||||
def fasta = [ file("${launchDir}/tests/data/fasta/E_coli/NC_010473.fa", checkIfExists: true) ]
|
||||
|
||||
BEDTOOLS_MASKFASTA( bed, fasta )
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue