Skip to content
This repository was archived by the owner on Mar 22, 2024. It is now read-only.

Commit 3229e6d

Browse files
author
Manon F. Réau
committed
fix bugs
1 parent ecf1040 commit 3229e6d

File tree

5 files changed

+19
-5
lines changed

5 files changed

+19
-5
lines changed

deeprank_gnn/GraphGen.py

-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@ def _get_pssm(pssm_path, mol_name, base_name):
9292
'PSSM file for ' + mol_name + ' not found')
9393
return pssm
9494

95-
def AddTarget():
96-
9795
if __name__ == '__main__':
9896

9997
pdb_path = './data/pdb/1ATN/'

deeprank_gnn/GraphGenMP.py

+19-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,29 @@
77
import multiprocessing as mp
88
from functools import partial
99
import pickle
10+
1011
from .ResidueGraph import ResidueGraph
1112
from .Graph import Graph
1213

1314

1415
class GraphHDF5(object):
1516

16-
def __init__(self, pdb_path, ref_path, graph_type='residue', pssm_path=None,
17+
def __init__(self, pdb_path, ref_path=None, graph_type='residue', pssm_path=None,
1718
select=None, outfile='graph.hdf5', nproc=1, use_tqdm=True, tmpdir='./',
1819
limit=None):
19-
20+
"""Master class from which graphs are computed
21+
Args:
22+
pdb_path (str): path to the docking models
23+
ref_path (str, optional): path to the reference model. Defaults to None.
24+
graph_type (str, optional): Defaults to 'residue'.
25+
pssm_path ([type], optional): path to the pssm file. Defaults to None.
26+
select (str, optional): filter files that starts with 'input'. Defaults to None.
27+
outfile (str, optional): Defaults to 'graph.hdf5'.
28+
nproc (int, optional): number of processors. Default to 1.
29+
use_tqdm (bool, optional): Default to True.
30+
tmpdir (str, optional): Default to `./`.
31+
limit (int, optional): Default to None.
32+
"""
2033
# get the list of PDB names
2134
pdbs = list(filter(lambda x: x.endswith(
2235
'.pdb'), os.listdir(pdb_path)))
@@ -37,7 +50,10 @@ def __init__(self, pdb_path, ref_path, graph_type='residue', pssm_path=None,
3750
base = os.path.basename(p)
3851
mol_name = os.path.splitext(base)[0]
3952
base_name = mol_name.split('_')[0]
40-
pssm[p] = self._get_pssm(pssm_path, mol_name, base_name)
53+
if pssm_path is not None:
54+
pssm[p] = self._get_pssm(pssm_path, mol_name, base_name)
55+
else:
56+
pssm[p] = None
4157

4258
# get the ref path
4359
if ref_path is None:

example/loss_epochplot_loss.png

27.9 KB
Loading

graphprot.png

-353 KB
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)