2021-02-03 16:02:58 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-02-03 16:20:02 +00:00
|
|
|
include { PRESEQ_LCEXTRAP } from '../../../../software/preseq/lcextrap/main.nf' addParams( options: [:] )
|
2021-02-03 16:02:58 +00:00
|
|
|
|
2021-05-12 13:56:46 +00:00
|
|
|
//
|
|
|
|
// Test with single-end data
|
|
|
|
//
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_preseq_single_end {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
2021-05-12 13:56:46 +00:00
|
|
|
[ file('https://github.com/smithlabcode/preseq/raw/master/data/SRR1003759_5M_subset.mr', checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-02-03 16:02:58 +00:00
|
|
|
PRESEQ_LCEXTRAP ( input )
|
|
|
|
}
|
|
|
|
|
2021-05-12 13:56:46 +00:00
|
|
|
//
|
|
|
|
// Test with paired-end data
|
|
|
|
//
|
2021-02-03 16:02:58 +00:00
|
|
|
workflow test_preseq_paired_end {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-05-12 13:56:46 +00:00
|
|
|
[ file('https://github.com/smithlabcode/preseq/raw/master/data/SRR1003759_5M_subset.mr', checkIfExists: true) ]
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-02-03 16:02:58 +00:00
|
|
|
|
|
|
|
PRESEQ_LCEXTRAP ( input )
|
|
|
|
}
|
|
|
|
|