-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnextflow.config
More file actions
73 lines (69 loc) · 1.71 KB
/
nextflow.config
File metadata and controls
73 lines (69 loc) · 1.71 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
executor {
cache = true
name = 'local'
queueSize = 2000
}
docker {
enabled = true
runOptions= "--entrypoint=''"
}
report {
enabled = true
file = 'reports/report.html'
overwrite = true
}
trace {
enabled = true
file = 'reports/trace.txt'
overwrite = true
}
timeline {
enabled = true
file = 'reports/timeline.html'
overwrite = true
}
dag {
enabled = true
file = 'reports/dag.dot'
overwrite = true
}
process {
executor='local'
scratch=false
cpus={ params.threads }
maxRetries=0
errorStrategy='retry'
withName: dlFastqs {
container="raphaelrubrice/reprohackathon_6:sra-toolkit_latest"
}
withName: trim_samples {
container="raphaelrubrice/reprohackathon_6:cutadapt_1.11"
}
withName: get_reference_genome {
container="raphaelrubrice/reprohackathon_6:wget_latest"
}
withName: build_index {
container="raphaelrubrice/reprohackathon_6:bowtie_0.12.7_samtools_latest"
}
withName: map_to_genome {
container="raphaelrubrice/reprohackathon_6:bowtie_0.12.7_samtools_latest"
}
withName: get_annotations {
container="raphaelrubrice/reprohackathon_6:wget_latest"
}
withName: counting {
container="raphaelrubrice/reprohackathon_6:featurecounts_1.4.6"
}
withName: check_quality_fastq {
container="raphaelrubrice/reprohackathon_6:fastqc_latest"
}
withName: stat_analysis {
container="raphaelrubrice/reprohackathon_6:R_deseq2_1.16.1"
}
withName: create_coldata {
container="raphaelrubrice/reprohackathon_6:R_deseq2_1.16.1"
}
withName: gene_pathway_analysis {
container="raphaelrubrice/reprohackathon_6:R_kegg"
}
}