nf-core_modules/tests/software/pairix/main.nf
JIANHONG OU 34f555a26a
add software/pairix (#508)
* add software/pairix

* Update the functions.nf to new version.
Remove -p parameter and fix version output command.
fix the duplicated documentation.
2021-05-25 21:22:57 +01:00

13 lines
400 B
Text

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { PAIRIX } from '../../../software/pairix/main.nf' addParams( options: [:] )
workflow test_pairix {
input = [ [ id:'test', single_end:false ], // meta map
file("https://raw.githubusercontent.com/4dn-dcic/pairix/master/samples/4dn.bsorted.chr21_22_only.nontriangle.pairs.gz", checkIfExists: true) ]
PAIRIX ( input )
}