-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow.config
More file actions
75 lines (60 loc) · 1.37 KB
/
nextflow.config
File metadata and controls
75 lines (60 loc) · 1.37 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
74
75
nextflow.enable.moduleBinaries = true
nextflow.enable.dsl=2
process {
withLabel: big_mem {
maxForks = 1
cpus = 6
memory = 8.GB
}
withLabel: anndata_to_seurat {
container = 'docker://nicolaimeyerhoefer/anndata_to_seurat'
}
withLabel: create_metacells {
container = 'docker://nicolaimeyerhoefer/create_metacells'
}
withLabel: grnboost2 {
container = 'docker://nicolaimeyerhoefer/grnboost2'
}
withLabel: zscore {
container = 'docker://nicolaimeyerhoefer/zscore'
}
withLabel: boostdiff {
container = 'docker://nicolaimeyerhoefer/boostdiff'
}
withLabel: chnet {
container = 'docker://nicolaimeyerhoefer/chnet'
}
}
conda.enabled = true
singularity {
enabled = true
runOptions = "--bind /data:/data"
}
params {
help = false
conda_env_path = '/data/bionets/yb85avem/envs/internetXplorer/envs'
grn_mode = false
create_metacells = true
use_tf_list = false
n_runs = 10
boostdiff {
n_estimators = 100
n_features = 1500
n_subsamples = 30
n_processes = 8
top_n_targets = 100
top_n_edges = 200
}
grnboost2 {
top_n_edges = 100
}
diffcoex {
top_n_edges = 100
}
z_score {
top_n_edges = 100
}
chnet {
lambda = 2.85
}
}