Update tests/software/bedtools/merge/main.nf

This commit is contained in:
Harshil Patel 2021-02-07 20:34:30 +00:00 committed by GitHub
parent b068f2fc53
commit 8841af1267
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,6 @@ nextflow.enable.dsl = 2
include { BEDTOOLS_MERGE } from '../../../../software/bedtools/merge/main.nf' addParams( options: [:] ) include { BEDTOOLS_MERGE } from '../../../../software/bedtools/merge/main.nf' addParams( options: [:] )
workflow test_bedtools_merge { workflow test_bedtools_merge {
def input = [] def input = []
input = [ [ id:'test'], input = [ [ id:'test'],
@ -13,4 +12,3 @@ workflow test_bedtools_merge {
BEDTOOLS_MERGE( input ) BEDTOOLS_MERGE( input )
} }