-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
executable file
·67 lines (39 loc) · 1.07 KB
/
nextflow.config
File metadata and controls
executable file
·67 lines (39 loc) · 1.07 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
/*
================================================================================
Here add Amazon AWS or cluster info
================================================================================
*/
docker.enabled = true
docker.runOptions = '-u $(id -u):$(id -g)'
manifest {
description = 'Running Nextflow script on Aws cloud9'
author = 'majeed jamakhani'
nextflowVersion = '>=22.10.0'
}
profiles {
standard {
process.container = 'nfcore/rnaseq:latest'
}
docker {
process.container = 'nfcore/rnaseq:latest'
docker.runOptions='-u $(id -u):$(id -g)'
docker.enabled = true
}
}
process {
withName:BEFOREQC {
container = 'biocontainers/fastqc:v0.11.9_cv7'
}
withName:SICKLE {
container = 'biocontainers/sickle:v1.33git20150314.f3d6ae3-1-deb_cv1'
}
withName:AFTERQC {
container = 'biocontainers/fastqc:v0.11.9_cv7'
}
withName:MULTIQC {
container = 'ewels/multiqc:latest'
}
withName:BWAINDEX {
container = 'biocontainers/bwa:v0.7.17_cv1'
}
}