-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnextflow.config
93 lines (68 loc) · 1.47 KB
/
nextflow.config
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
manifest {
nextflowVersion = ">=21.04"
}
params {
n_samples = 1000
n_genes = 100
n_classes = 2
emx_file = "example.emx.txt"
cmx_file = "example.cmx.txt"
rmt_file = "example.rmt.txt"
net_file = "example.net.txt"
output_dir = "output"
plots_dir = "output/plots"
similarity_clusmethod = "gmm"
similarity_corrmethod = "spearman"
similarity_minexpr = "-inf"
similarity_minclus = 1
similarity_maxclus = 5
similarity_criterion = "bic"
similarity_preout = true
similarity_postout = true
similarity_mincorr = 0
similarity_maxcorr = 1
threshold_method = "rmt"
threshold_tstart = 0.99
threshold_tstep = 0.001
threshold_tstop = 0.50
}
report {
enabled = true
file = "${params.output_dir}/reports/report.html"
}
timeline {
enabled = true
file = "${params.output_dir}/reports/timeline.html"
}
trace {
enabled = true
fields = "task_id,hash,native_id,process,tag,name,status,exit,module,container,cpus,time,disk,memory,attempt,submit,start,complete,duration,realtime,queue,%cpu,%mem,rss,vmem,peak_rss,peak_vmem,rchar,wchar,syscr,syscw,read_bytes,write_bytes"
file = "${params.output_dir}/reports/trace.txt"
raw = true
}
process {
errorStrategy = "retry"
maxRetries = 2
echo = false
}
profiles {
palmetto {
process {
executor = "pbspro"
cpus = 2
memory = 8.GB
time = 24.h
module = "anaconda3/5.1.0-gcc"
}
}
standard {
process {
executor = "local"
cpus = 2
memory = 8.GB
}
}
testing {
process.errorStrategy = "terminate"
}
}