mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 13:23:09 +00:00
cc8439a167
* add software/pairtools * create a branch for pairtools/flip * fix the issue of PG line in output * remove custom code from test. Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
14 lines
542 B
Text
14 lines
542 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { PAIRTOOLS_FLIP } from '../../../../software/pairtools/flip/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_pairtools_flip {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file("https://raw.githubusercontent.com/open2c/pairtools/master/tests/data/mock.4flip.pairs", checkIfExists: true) ]
|
|
sizes = file("https://raw.githubusercontent.com/open2c/pairtools/master/tests/data/mock.chrom.sizes", checkIfExists:true)
|
|
|
|
PAIRTOOLS_FLIP ( input, sizes )
|
|
}
|