fix(bedtools): Add header param

This commit is contained in:
Edmund Miller 2020-11-13 09:22:25 -06:00 committed by sruthipsuresh
parent a984c1be7c
commit b16226c09c

View file

@ -1,8 +1,8 @@
#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { BEDTOOLS_SLOP as BEDTOOLS_SLOP_S } from '../main.nf' addParams( options: [ publish_dir:'test_asymmetrical' ] )
include { BEDTOOLS_SLOP as BEDTOOLS_SLOP_AS } from '../main.nf' addParams( options: [ publish_dir:'test_symmetrical' ] )
include { BEDTOOLS_SLOP as BEDTOOLS_SLOP_S } from '../main.nf' addParams( options: [ publish_dir:'test_asymmetrical' ], header: true )
include { BEDTOOLS_SLOP as BEDTOOLS_SLOP_AS } from '../main.nf' addParams( options: [ publish_dir:'test_symmetrical' ], header: true )
// To run with header and pct enabled, type --pct true and --header true with nextflow run command.