forked from qbic-pipelines/vcftomaf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.nf
More file actions
109 lines (95 loc) · 3.24 KB
/
main.nf
File metadata and controls
109 lines (95 loc) · 3.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
#!/usr/bin/env nextflow
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
qbic-pipelines/vcftomaf
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Github : https://github.com/qbic-pipelines/vcftomaf
----------------------------------------------------------------------------------------
*/
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IMPORT FUNCTIONS / MODULES / SUBWORKFLOWS / WORKFLOWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
include { VCFTOMAF } from './workflows/vcftomaf'
include { PIPELINE_INITIALISATION } from './subworkflows/local/utils_nfcore_vcftomaf_pipeline'
include { PIPELINE_COMPLETION } from './subworkflows/local/utils_nfcore_vcftomaf_pipeline'
include { getGenomeAttribute } from './subworkflows/local/utils_nfcore_vcftomaf_pipeline'
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RUN MAIN WORKFLOW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
workflow {
//
// SUBWORKFLOW: Run initialisation tasks
//
PIPELINE_INITIALISATION(
params.version,
params.validate_params,
params.monochrome_logs,
args,
params.outdir,
params.input,
params.help,
params.help_full,
params.show_hidden,
)
//
// WORKFLOW: Run main workflow
//
QBICPIPELINES_VCFTOMAF(
PIPELINE_INITIALISATION.out.samplesheet
)
//
PIPELINE_COMPLETION(
params.email,
params.email_on_fail,
params.plaintext_email,
params.outdir,
params.monochrome_logs,
params.hook_url,
QBICPIPELINES_VCFTOMAF.out.multiqc_report,
)
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NAMED WORKFLOWS FOR PIPELINE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
//
// WORKFLOW: Run main analysis pipeline depending on type of input
//
workflow QBICPIPELINES_VCFTOMAF {
take:
samplesheet // channel: samplesheet read in from --input
main:
//
// SET PARAMETERS
//
params.fasta = getGenomeAttribute('fasta')
params.dict = getGenomeAttribute('dict')
// Extra files
intervals = params.intervals ? channel.fromPath(params.intervals).collect() : channel.value([])
liftover_chain = params.liftover_chain ? channel.fromPath(params.liftover_chain).collect() : channel.value([])
// FASTA
fasta = params.fasta ? channel.fromPath(params.fasta).collect() : channel.value([])
dict = params.dict ? channel.fromPath(params.dict).collect() : channel.empty()
// VEP cache
vep_cache = params.vep_cache ? channel.fromPath(params.vep_cache).collect() : channel.value([])
vep_cache_unpacked = channel.value([])
//
// WORKFLOW: Run pipeline
//
VCFTOMAF(
samplesheet,
intervals,
fasta,
dict,
liftover_chain,
vep_cache,
vep_cache_unpacked,
)
emit:
multiqc_report = VCFTOMAF.out.multiqc_report // channel: /path/to/multiqc_report.html
}