-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.nf
executable file
·43 lines (36 loc) · 1.46 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
#!/usr/bin/env nextflow
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
summit easter egg
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Started May 2024.
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Github : https://github.com/nextflow-io/summit
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
params.barcelona24 = false
params.boston24 = false
params.help = false
println " __ ___ __ __ __"
println "|__` | | |\\/| |\\/| | | __| | | __| |__|"
println ".__| |__| | | | | | | |__ |__| |__ |"
println "\n"
if (params.barcelona24) {
println "Summit | Oct 28 - Nov 01"
println "https://summit.nextflow.io/2024/barcelona/agenda/#10-30"
System.exit(0)
}
if (params.boston24) {
println "Summit | May 23-24"
println "https://summit.nextflow.io/2024/boston/agenda/#05-23"
System.exit(0)
}
if (params.help) {
println "Please do not hesitate to contact any of the nice Seqeran wearing"
println " the t-shirt you just saw and we will make sure to help you"
System.exit(0)
}
println "Available params are:"
println " --help: get some help"
println " --boston24: get some more information about the 2024 Nextflow Boston Summit"
println " --barcelona24: get some more information about the 2024 Nextflow Barcelona Summit"