7
7
import multiprocessing as mp
8
8
from functools import partial
9
9
import pickle
10
+
10
11
from .ResidueGraph import ResidueGraph
11
12
from .Graph import Graph
12
13
13
14
14
15
class GraphHDF5 (object ):
15
16
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 ,
17
18
select = None , outfile = 'graph.hdf5' , nproc = 1 , use_tqdm = True , tmpdir = './' ,
18
19
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
+ """
20
33
# get the list of PDB names
21
34
pdbs = list (filter (lambda x : x .endswith (
22
35
'.pdb' ), os .listdir (pdb_path )))
@@ -37,7 +50,10 @@ def __init__(self, pdb_path, ref_path, graph_type='residue', pssm_path=None,
37
50
base = os .path .basename (p )
38
51
mol_name = os .path .splitext (base )[0 ]
39
52
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
41
57
42
58
# get the ref path
43
59
if ref_path is None :
0 commit comments