mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
9842a10833
* add software/pairtools * create a branch for pairtools/parse * fix the issue of bioconda output is different from docker. * remove customized code from test. Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
14 lines
552 B
Text
14 lines
552 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { PAIRTOOLS_PARSE } from '../../../../software/pairtools/parse/main.nf' addParams( options: ['suffix':'.raw'] )
|
|
|
|
workflow test_pairtools_parse {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file("https://raw.githubusercontent.com/open2c/pairtools/master/tests/data/mock.sam", checkIfExists: true) ]
|
|
sizes = file("https://raw.githubusercontent.com/open2c/pairtools/master/tests/data/mock.chrom.sizes", checkIfExists:true)
|
|
|
|
PAIRTOOLS_PARSE ( input, sizes )
|
|
}
|