mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
02892ef654
* add base code from samblaster * added test yml * fixing versions files, should this be the cause of online lint failures * removed tmp files that shouldn't be there * fixing output file name - 1 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fixing output file name - 2 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fixing output file name - 3 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fixing output file name - 4 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fixing output file name - 5 Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> * fixing output file name - 6 * fixed indent * fixed input name and updated test.yml file with new name Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
13 lines
426 B
Text
13 lines
426 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { SAMBLASTER } from '../../../modules/samblaster/main.nf' addParams( options: [args: "-M --addMateTags", suffix:'.processed'] )
|
|
|
|
workflow test_samblaster {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_umi_unsorted_bam'], checkIfExists: true) ]
|
|
|
|
SAMBLASTER ( input )
|
|
}
|