-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
79 lines (71 loc) · 1.16 KB
/
config.py
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
path = "data/130723_data_hepatocytes.h5ad"
# small set of genes
central = [
"Oat",
"Cyp2e1",
"Lect2",
"Cyp2c37",
"Gulo",
"Cyp2a5",
"Glul",
"Aldh1a1",
"Cyp1a2",
"Slc22a1",
"Slc1a2",
]
portal = ["Pck1", "Aldh1b1", "Ctsc", "Sds", "Hal", "Hsd17b13", "Cyp2f2"]
# full set of genes
central_big = [
"Rnase4",
"Glul",
"Oat",
"Cyp2c37",
"Airn",
"Lect2",
"Slc22a1",
"Cyp2e1",
"Cyp7a1",
"Gm30117",
"Aldh1a1",
"Cyp2c50",
"Lhpp",
"Cyp1a2",
"Slc1a2",
"Cyp2a5",
"Pon1",
"Slco1b2",
"Cyp2c54",
"Mgst1",
"Gulo",
"Lgr5",
]
portal_big = [
"Ctsc",
"Aldh1b1",
"Pigr",
"Serpina1d",
"Apoc2",
"Hal",
"Gc",
"Hsd17b13",
"Itih4",
"Apoc3",
"Hpx",
"Hsd17b6",
"Apoa4",
"Sds",
"Serpina1b",
"Serpinc1",
"Alb",
"Cyp2f2",
"Pck1",
]
genes = central + portal
genes_big = central_big + portal_big
clamp_gene = "Cyp2e1" # gene to clamp
# training parameters
batch_size = 0 # batch size, put zero for full batch
n_iter = 10000 # number of iterations
# name of the output files
save = False
name = "big_set"