mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
34f555a26a
* add software/pairix * Update the functions.nf to new version. Remove -p parameter and fix version output command. fix the duplicated documentation.
13 lines
400 B
Text
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 )
|
|
}
|