Closed cbaakman closed 3 years ago
Thanks for raising this issue.
Identified issue: when running Deeprank-GNN with the louvain node clustering algorithm, Deeprank-GNN was still expecting mcl cluster data due to a lack of specification of the clustering algorithm used when loading the data (in HDF5dataset)
Solution: Update every call of HDF5dataset with clustering information
HDF5DataSet(root='./', database=database, node_feature=self.node_feature, edge_feature=self.edge_feature,
target=self.target, clustering_method=self.cluster_nodes)
This has been solved in PR #59
I ran the following script, using Deeprank-GNN:
PDB files were: 1jyn.pdb 2y69.pdb 5ju6.pdb
The output was:
Switching to mcl clustering makes it work.
Is Louvain clustering available ?