forked from nf-core/phaseimpute
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.nf
164 lines (144 loc) · 5.24 KB
/
main.nf
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#!/usr/bin/env nextflow
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
nf-core/phaseimpute
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Github : https://github.com/nf-core/phaseimpute
Website: https://nf-co.re/phaseimpute
Slack : https://nfcore.slack.com/channels/phaseimpute
*/
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IMPORT FUNCTIONS / MODULES / SUBWORKFLOWS / WORKFLOWS
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
include { PHASEIMPUTE } from './workflows/phaseimpute'
include { CHRCHECK as CHRCHECK_INPUT } from './workflows/chrcheck'
include { CHRCHECK as CHRCHECK_TRUTH } from './workflows/chrcheck'
include { CHRCHECK as CHRCHECK_PANEL } from './workflows/chrcheck'
include { PIPELINE_INITIALISATION } from './subworkflows/local/utils_nfcore_phaseimpute_pipeline'
include { PIPELINE_COMPLETION } from './subworkflows/local/utils_nfcore_phaseimpute_pipeline'
include { getGenomeAttribute } from './subworkflows/local/utils_nfcore_phaseimpute_pipeline'
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NAMED WORKFLOWS FOR PIPELINE
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
//
// WORKFLOW: Run main analysis pipeline depending on type of input
//
workflow NFCORE_PHASEIMPUTE {
take:
ch_input // channel: samplesheet read in from --input
ch_input_truth // channel: samplesheet read in from --input-truth
ch_fasta // channel: reference genome FASTA file with index
ch_panel // channel: reference panel variants file
ch_regions // channel: regions to use [[chr, region], region]
ch_depth // channel: depth of coverage file [[depth], depth]
ch_map // channel: map file for imputation
ch_posfile // channel: samplesheet read in from --posfile
ch_chunks // channel: samplesheet read in from --chunks
ch_versions // channel: versions of software used
main:
//
// Initialise input channels
//
ch_input_impute = Channel.empty()
ch_input_simulate = Channel.empty()
ch_input_validate = Channel.empty()
// Check input files for contigs names consistency
lst_chr = ch_regions.map { it[0].chr }
.unique()
.collect()
.toList()
CHRCHECK_INPUT(ch_input.combine(lst_chr))
ch_input = CHRCHECK_INPUT.out.output
ch_versions = ch_versions.mix(CHRCHECK_INPUT.out.versions)
CHRCHECK_TRUTH(ch_input_truth.combine(lst_chr))
ch_input_truth = CHRCHECK_TRUTH.out.output
CHRCHECK_PANEL(ch_panel.map{ meta, file, index -> [meta, file, index, [meta.chr]]})
ch_panel = CHRCHECK_PANEL.out.output
if (params.steps.split(',').contains("simulate") || params.steps.split(',').contains("all")) {
ch_input_simulate = ch_input
} else if (params.steps.split(',').contains("impute")) {
ch_input_impute = ch_input
} else if (params.steps.split(',').contains("validate")) {
ch_input_validate = ch_input
}
if (params.steps.split(',').contains("all")) {
ch_input_truth.map{
error "Cannot run all steps with --input-truth"
}
ch_input_truth = ch_input
}
//
// WORKFLOW: Run pipeline
//
PHASEIMPUTE (
ch_input_impute,
ch_input_simulate,
ch_input_validate,
ch_input_truth,
ch_fasta,
ch_panel,
ch_regions,
ch_depth,
ch_map,
ch_posfile,
ch_chunks,
ch_versions
)
emit:
multiqc_report = PHASEIMPUTE.out.multiqc_report // channel: /path/to/multiqc_report.html
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RUN MAIN WORKFLOW
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
workflow {
main:
//
// SUBWORKFLOW: Run initialisation tasks
//
PIPELINE_INITIALISATION (
params.version,
params.validate_params,
params.monochrome_logs,
args,
params.outdir,
params.input
)
//
// WORKFLOW: Run main workflow
//
NFCORE_PHASEIMPUTE (
PIPELINE_INITIALISATION.out.input,
PIPELINE_INITIALISATION.out.input_truth,
PIPELINE_INITIALISATION.out.fasta,
PIPELINE_INITIALISATION.out.panel,
PIPELINE_INITIALISATION.out.regions,
PIPELINE_INITIALISATION.out.depth,
PIPELINE_INITIALISATION.out.gmap,
PIPELINE_INITIALISATION.out.posfile,
PIPELINE_INITIALISATION.out.chunks,
PIPELINE_INITIALISATION.out.versions
)
//
// SUBWORKFLOW: Run completion tasks
//
PIPELINE_COMPLETION (
params.email,
params.email_on_fail,
params.plaintext_email,
params.outdir,
params.monochrome_logs,
params.hook_url,
NFCORE_PHASEIMPUTE.out.multiqc_report
)
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
THE END
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/