-
Notifications
You must be signed in to change notification settings - Fork 0
/
mini_ac.config
104 lines (86 loc) · 2.22 KB
/
mini_ac.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
94
95
96
97
98
99
100
101
102
103
104
process.container = "vibpsb/mini-ac:latest"
singularity {
enabled = true
cacheDir = "singularity_cache"
autoMounts = true
}
workDir = './work'
params {
//// Output folder
OutDir = "$projectDir/example/outputs"
//// Required input
ACR_dir = "$projectDir/example/inputs/acr_files/"
//// Optional input
// Differential expression data
DE_genes = true
DE_genes_dir = "$projectDir/example/inputs/de_files"
One_DE_set = true
// Expression data
Filter_set_genes = true
Set_genes_dir = "$projectDir/example/inputs/exp_genes_files"
One_filtering_set = true
//// Prediction parameters
Bps_intersect = false
//// Prediction parameters only genome-wide
Second_gene_annot = false
Second_gene_dist = 500
}
executor {
name = 'local'
}
// // WHEN USING HPC SGE UNCOMMENT THE CODE BELOW
// executor {
// name = 'sge'
// queueSize = 25
// }
// process {
// withName: get_ACR_shufflings {
// clusterOptions = '-l h_vmem=4G'
// }
// withName: getStats {
// clusterOptions = '-l h_vmem=10G'
// }
// withName: getStats_bps {
// clusterOptions = '-l h_vmem=50G'
// }
// withName: getNetwork {
// clusterOptions = '-l h_vmem=20G'
// }
// withName: filterSetOfGenes {
// clusterOptions = '-l h_vmem=5G'
// }
// withName: GOenrichment {
// clusterOptions = '-l h_vmem=5G'
// }
// withName: getIntegrativeOutputs {
// clusterOptions = '-l h_vmem=3G'
// }
// }
// // WHEN USING HPC SLURM UNCOMMENT THE CODE BELOW
// executor {
// name = 'slurm'
// queueSize = 25
// }
// process {
// withName: get_ACR_shufflings {
// clusterOptions = '--mem 4G'
// }
// withName: getStats {
// clusterOptions = '--mem 10G'
// }
// withName: getStats_bps {
// clusterOptions = '--mem 50G'
// }
// withName: getNetwork {
// clusterOptions = '--mem 20G'
// }
// withName: filterSetOfGenes {
// clusterOptions = '--mem 5G'
// }
// withName: GOenrichment {
// clusterOptions = '--mem 5G'
// }
// withName: getIntegrativeOutputs {
// clusterOptions = '--mem 3G'
// }
// }