2021-02-03 16:02:58 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { SAMTOOLS_STATS } from '../../../../modules/samtools/stats/main.nf'
|
2021-02-03 16:02:58 +00:00
|
|
|
|
|
|
|
workflow test_samtools_stats {
|
|
|
|
input = [ [ id:'test', single_end:false ], // meta map
|
2021-03-24 18:15:30 +00:00
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam_bai'], checkIfExists: true)
|
2021-03-24 09:53:41 +00:00
|
|
|
]
|
2021-03-24 18:15:30 +00:00
|
|
|
|
2021-10-29 11:01:05 +00:00
|
|
|
SAMTOOLS_STATS ( input, [])
|
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_samtools_stats_cram {
|
2021-11-18 21:24:47 +00:00
|
|
|
input = [ [ id: 'test', single_end:true ], // meta map
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_recalibrated_sorted_cram'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_recalibrated_sorted_cram_crai'], checkIfExists: true)
|
2021-10-29 11:01:05 +00:00
|
|
|
]
|
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
|
|
|
|
SAMTOOLS_STATS ( input, fasta )
|
2021-02-03 16:02:58 +00:00
|
|
|
}
|