mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
69 lines
2.5 KiB
Text
Executable file
69 lines
2.5 KiB
Text
Executable file
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { CNVKIT_BATCH as CNVKIT_HYBRID } from '../../../../modules/cnvkit/batch/main.nf'
|
|
include { CNVKIT_BATCH as CNVKIT_WGS } from '../../../../modules/cnvkit/batch/main.nf'
|
|
include { CNVKIT_BATCH as CNVKIT_TUMORONLY } from '../../../../modules/cnvkit/batch/main.nf'
|
|
|
|
workflow test_cnvkit_hybrid {
|
|
|
|
input = [
|
|
[ id:'test' ], // meta map
|
|
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)
|
|
]
|
|
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
targets = file(params.test_data['sarscov2']['genome']['baits_bed'], checkIfExists: true)
|
|
|
|
CNVKIT_HYBRID ( input, fasta, targets, [] )
|
|
}
|
|
|
|
workflow test_cnvkit_wgs {
|
|
|
|
input = [
|
|
[ id:'test'], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_sorted_bam'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_bam'], checkIfExists: true)
|
|
]
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
CNVKIT_WGS ( input, fasta, [], [] )
|
|
}
|
|
|
|
workflow test_cnvkit_cram {
|
|
|
|
input = [
|
|
[ id:'test'], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_sorted_cram'], checkIfExists: true),
|
|
file(params.test_data['homo_sapiens']['illumina']['test_paired_end_sorted_cram'], checkIfExists: true)
|
|
]
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
|
|
CNVKIT_WGS ( input, fasta, [], [] )
|
|
}
|
|
|
|
workflow test_cnvkit_tumoronly {
|
|
|
|
input = [
|
|
[ id:'test'], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_sorted_bam'], checkIfExists: true),
|
|
[]
|
|
]
|
|
reference = file(params.test_data['generic']['cnn']['reference'], checkIfExists: true)
|
|
|
|
CNVKIT_TUMORONLY ( input, [], [], reference )
|
|
}
|
|
|
|
workflow test_cnvkit_tumoronly_cram {
|
|
|
|
input = [
|
|
[ id:'test'], // meta map
|
|
file(params.test_data['homo_sapiens']['illumina']['test2_paired_end_sorted_cram'], checkIfExists: true),
|
|
[]
|
|
]
|
|
fasta = file(params.test_data['homo_sapiens']['genome']['genome_fasta'], checkIfExists: true)
|
|
reference = file(params.test_data['generic']['cnn']['reference'], checkIfExists: true)
|
|
|
|
CNVKIT_TUMORONLY ( input, fasta, [], reference )
|
|
}
|