2021-03-22 12:48:23 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { SAMTOOLS_MERGE } from '../../../../modules/samtools/merge/main.nf'
|
2021-03-22 12:48:23 +00:00
|
|
|
|
|
|
|
workflow test_samtools_merge {
|
2021-03-24 18:15:30 +00:00
|
|
|
input = [ [ id: 'test' ], // meta map
|
2022-07-18 09:37:45 +00:00
|
|
|
[
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_methylated_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true),
|
|
|
|
file(params.test_data['sarscov2']['illumina']['test_single_end_sorted_bam'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
]
|
2021-03-22 12:48:23 +00:00
|
|
|
|
2022-07-18 09:37:45 +00:00
|
|
|
SAMTOOLS_MERGE ( input, [], [] )
|
2021-10-29 11:01:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
workflow test_samtools_merge_cram {
|
|
|
|
input = [ [ id: 'test' ], // meta map
|
2022-07-18 09:37:45 +00:00
|
|
|
[
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_recalibrated_sorted_cram'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_recalibrated_sorted_cram'], checkIfExists: true),
|
|
|
|
]
|
|
|
|
]
|
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
fai = file(params.test_data['homo_sapiens']['genome']['genome_fasta_fai'], checkIfExists: true)
|
|
|
|
SAMTOOLS_MERGE ( input, fasta, fai )
|
2021-03-22 12:48:23 +00:00
|
|
|
}
|