forked from 1075793472/AFTGAN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun_test_bigger.py
32 lines (24 loc) · 1.13 KB
/
run_test_bigger.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
import os
def run_func(description, ppi_path, pseq_path, vec_path,
index_path, gnn_model, bigger_ppi_path, bigger_pseq_path):
os.system("python gnn_test_bigger.py \
--description={} \
--ppi_path={} \
--pseq_path={} \
--vec_path={} \
--index_path={} \
--gnn_model={} \
--bigger_ppi_path={} \
--bigger_pseq_path={} \
".format(description, ppi_path, pseq_path, vec_path,
index_path, gnn_model, bigger_ppi_path, bigger_pseq_path))
if __name__ == "__main__":
description = "test"
ppi_path = "./data/protein.actions.SHS27k.STRING.txt"
pseq_path = "./data/protein.SHS27k.sequences.dictionary.tsv"
vec_path = "./data/vec5_CTC.txt"
index_path = "./bfs_confirm"
gnn_model = "./ymz/aft+gat+bfs/gnn_model_train.ckpt"
bigger_ppi_path = "./data/9606.protein.actions.all_connected.txt"
bigger_pseq_path = "./data/protein.STRING_all_connected.sequences.dictionary.tsv"
run_func(description, ppi_path, pseq_path, vec_path, index_path, gnn_model, bigger_ppi_path, bigger_pseq_path)