-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster.json
91 lines (91 loc) · 2.45 KB
/
cluster.json
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
{
"documenation": {
"cmdline": "Use with snakemake -j 999 --cluster-config cluster.json --cluster 'sbatch --job-name {cluster.job-name} --ntasks-per-node {cluster.ntasks-per-node} --cpus-per-task {threads} --mem-per-cpu {cluster.mem-per-cpu} --partition {cluster.partition} --time {cluster.time} --mail-user {cluster.mail-user} --mail-type {cluster.mail-type} --error {cluster.error} --output {cluster.output}'"
},
"__default__": {
"account": "kretzler",
"job-name": "SM.{rule}",
"partition": "standard",
"nodes": "1",
"time": "10:00:00",
"ntasks-per-node": "1",
"cpus-per-task": "1",
"mem-per-cpu": "4gb",
"output": "logs/%j.%N.out.txt",
"error": "logs/%j.%N.err.txt",
"mail-user": "$USER@umich.edu",
"mail-type": "ALL"
},
"HtSeq_Count": {
"mem-per-cpu": "4gb",
"time": "10:00:00"
},
"fastqScreen": {
"mem-per-cpu": "16gb",
"time": "2:00:00"
},
"fastqc": {
"mem-per-cpu": "1gb",
"time": "00:45:00"
},
"STAR_fq": {
"time": "10:00:00",
"cpus-per-task": "12",
"mem-per-cpu": "14gb"
},
"StringTie": {
"time": "01:00:00",
"cpus-per-task": "6",
"mem-per-cpu": "16gb"
},
"Picard": {
"time": "01:00:00",
"cpus-per-task": "1",
"mem-per-cpu": "8gb"
},
"HtSeqPca": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
},
"BallGownGenePca": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
},
"BallGownTxPca": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
},
"HtSeqCluster": {
"time": "10:00:00",
"cpus-per-task": "12",
"mem-per-cpu": "4gb"
},
"BallGownGeneCluster": {
"time": "10:00:00",
"cpus-per-task": "12",
"mem-per-cpu": "4gb"
},
"BallGwownTxCluster": {
"time": "10:00:00",
"cpus-per-task": "12",
"mem-per-cpu": "12gb"
},
"HtSeqBoxPlot": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
},
"BallGownGeneBoxPlot": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
},
"BallGownTcBoxPlot": {
"time": "00:30:00",
"cpus-per-task": "1",
"mem-per-cpu": "4gb"
}
}