2021-10-18 21:34:23 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2021-11-26 07:58:40 +00:00
|
|
|
include { STRELKA_SOMATIC } from '../../../../modules/strelka/somatic/main.nf'
|
2021-10-18 21:34:23 +00:00
|
|
|
|
|
|
|
workflow test_strelka_somatic {
|
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // 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),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_recalibrated_sorted_cram'], checkIfExists: true),
|
2021-10-27 15:49:54 +00:00
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_recalibrated_sorted_cram_crai'], checkIfExists: true),
|
2022-02-10 09:34:22 +00:00
|
|
|
[],[],
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed_gz_tbi'], checkIfExists: true)
|
2021-10-27 15:49:54 +00:00
|
|
|
]
|
|
|
|
|
2022-02-10 09:34:22 +00:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_21_fasta'], checkIfExists: true)
|
|
|
|
fai = file(params.test_data['homo_sapiens']['genome']['genome_21_fasta_fai'], checkIfExists: true)
|
2021-10-27 15:49:54 +00:00
|
|
|
|
2022-02-10 09:34:22 +00:00
|
|
|
STRELKA_SOMATIC (input, fasta, fai )
|
2021-10-27 15:49:54 +00:00
|
|
|
}
|
|
|
|
|
2022-02-10 09:34:22 +00:00
|
|
|
workflow test_strelka_best_practices_somatic {
|
|
|
|
|
2021-10-27 15:49:54 +00:00
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // 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),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_recalibrated_sorted_cram'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_recalibrated_sorted_cram_crai'], checkIfExists: true),
|
2022-02-10 09:34:22 +00:00
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome21_indels_vcf_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['illumina']['test_genome21_indels_vcf_gz_tbi'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed_gz'], checkIfExists: true),
|
|
|
|
file(params.test_data['homo_sapiens']['genome']['genome_21_multi_interval_bed_gz_tbi'], checkIfExists: true)
|
2021-10-18 21:34:23 +00:00
|
|
|
]
|
|
|
|
|
2022-02-10 09:34:22 +00:00
|
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_21_fasta'], checkIfExists: true)
|
|
|
|
fai = file(params.test_data['homo_sapiens']['genome']['genome_21_fasta_fai'], checkIfExists: true)
|
2021-10-18 21:34:23 +00:00
|
|
|
|
2022-02-10 09:34:22 +00:00
|
|
|
STRELKA_SOMATIC ( input, fasta, fai )
|
2021-10-18 21:34:23 +00:00
|
|
|
}
|