forked from George-Marchment/hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.nf
48 lines (36 loc) · 1.5 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
/**
Nextflow workflow performing an ARN-seq Analysis created by :
- Ambre Baumann (https://github.com/ambrebaumann)
- Lindsay Goulet (https://github.com/Lindsay-Goulet)
- George Marchment (https://github.com/George-Marchment)
- Clémence Sebe (https://github.com/ClemenceS)
This workflow was created in the context of the 2022 Hackathon project (master M2 AMI2B)
This project was surpervised by Frédéric Lemoine & Thomas Cokelaer
**/
//Import the different workflows
include { RNA_SEQ } from './workflows/rna-seq'
log.info """\
===================================
H A C K A T H O N W O R K F L O W
===================================
Written by :
- Ambre Baumann (https://github.com/ambrebaumann)
- Lindsay Goulet (https://github.com/Lindsay-Goulet)
- George Marchment (https://github.com/George-Marchment)
- Clémence Sebe (https://github.com/ClemenceS)
Options selected :
- downloadFastq : ${params.downloadFastq}
- downloadGenome : ${params.downloadGenome}
- downloadAnnotation : ${params.downloadAnnotation}
- createGenome : ${params.createGenome}
- doQuality : ${params.doQuality}
- doTrimmomatic : ${params.doTrimmomatic}
- getTrimmomatic : ${params.getTrimmomatic}
- mapping : ${params.mapping}
- indexBam : ${params.indexBam}
- countingReads : ${params.countingReads}
- differentialAnalysis : ${params.differentialAnalysis}
"""
workflow {
RNA_SEQ()
}