Skip to content

Commit 438599f

Browse files
committed
Bug fix on tmap plotter
1 parent 3f576f5 commit 438599f

File tree

2 files changed

+19
-8
lines changed

2 files changed

+19
-8
lines changed

hyper.param

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
## All relative path starts from the location of working directory not this file
22

33
############### Parameters for SnD #####################
4-
receptor_name = nCoV_6LU7 # name the receptor to create dir
5-
receptor_file = ./targets/nCoV_6LU7/6LU7.mol2 # must be mol2 format
6-
ligand_file = ./targets/nCoV_6LU7/N3.sdf # must be sd format
7-
ncycle = 1000 # number of cycles to be run
4+
receptor_name = CDK2_5IEV # name the receptor to create dir
5+
receptor_file = /home/ziqiaoxu/SampleDock/targets/CDK2_5IEV/5IEV.mol2
6+
# must be mol2 format
7+
ligand_file = /home/ziqiaoxu/SampleDock/targets/CDK2_5IEV/Roniciclib.sd
8+
# must be sd format
9+
ncycle = 1600 # number of cycles to be run
810
ndesign = 20 # number of designs to be generated per cycle
9-
seed_smi = C1=CC=CC=C1 # initial seeding SMILES for the first cycle, default to benzene
11+
seed_smi = C1(C(NC2=CC=CC=C2)=NC=N3)=C3C=CC=C1
12+
# initial seeding SMILES for the first cycle, default to benzene
1013

1114
############### Parameters for rDock ###################
12-
cavity_protocol = rbcavity -W -d -r # cmd and option for creating pocket
15+
cavity_protocol = rbcavity -was -d -r # cmd and option for creating pocket
1316
# -W option for rxdock precompiled bin file, -was for locally compiled rdock installation
1417
docking_prm = dock.prm # docking protocol (-p), no solvation term by default
1518
npose = 100 # number of poses generated (-n)
@@ -24,3 +27,7 @@ depthG = 3
2427
vocab_loc = ./models/moses-h450z56/vocab.txt
2528
model_loc = ./models/moses-h450z56/model.iter-400000
2629

30+
########## Parameters for LSH Forest (tmap) #############
31+
node_size = 1/20 # Node size for tmap
32+
k = 20 # nearest neighbors
33+
mmm_repeats = 2

test_hyper.param

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
receptor_name = CDK2-5IEV # name the receptor to create dir
55
receptor_file = ./targets/CDK2_5IEV/5IEV.mol2 # must be mol2 format
66
ligand_file = ./targets/CDK2_5IEV/Roniciclib.sd # must be sd format
7-
ncycle = 5 # number of cycles to be run
7+
ncycle = 2 # number of cycles to be run
88
ndesign = 10 # number of designs to be generated per cycle
99
seed_smi = C1=CC=CC=C1 # initial seeding SMILES for the first cycle, default to benzene
1010

1111
############### Parameters for rDock ###################
12-
cavity_protocol = rbcavity -W -d -r # cmd and option for creating pocket
12+
cavity_protocol = rbcavity -was -d -r # cmd and option for creating pocket
1313
docking_prm = dock.prm # docking protocol (-p), no solvation term by default
1414
npose = 10 # number of poses generated (-n)
1515
prefix = pose_docked_ # prefix of the output files from rDock
@@ -23,3 +23,7 @@ depthG = 3
2323
vocab_loc = ./models/moses-h450z56/vocab.txt
2424
model_loc = ./models/moses-h450z56/model.iter-400000
2525

26+
########## Parameters for LSH Forest (tmap) #############
27+
node_size = 1/20 # Node size for tmap
28+
k = 20 # nearest neighbors
29+
mmm_repeats = 2

0 commit comments

Comments
 (0)