nf-core_modules/tests/software/pairtools/flip/main.nf
JIANHONG OU cc8439a167
Pairtools flip (#520)
* 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>
2021-05-27 18:09:28 +01:00

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 )
}