Support Vector Machine on Graph Kernel for Ranking Protein-Protein Docking Models
Minimal information to install the module
- Check if command
mpiexec
is available or not in your console. If not, download and install openmpi or mpich. - Install iScore using
pip install iScore
Possible problems:
- If
pip install iScore
gives problems on installingmpi4py
, try to first installmpi4py
usingconda install mpi4py
and thenpip install iScore
.
The documentation of the package can be found at:
iScore offers simple solutions to classify protein-protein interfaces using a support vector machine approach on graph kernels. The simplest way to use iScore is through dedicated binaries that hide the complexity of the approach and allows access to the code with simple command line interfaces. The two binaries are iscore.train
and iscore.predict
(iscore.train.mpi
and iscore.predict.mpi
for parallel running) that respectively train a model using a training set and use this model to rank the docking models of a protein-protein complex.
-
Use the following file structure
root/ |__train/ | |__ pdb/ | |__ pssm/ | |__ class.lst |__test/ |__pdb/ |__pssm/ |__ class.lst (optional)
The
pdb
folder contains the PDB files of docking models, andpssm
contains the PSSM files. Theclass.lst
is a list of class ID and PDB file name for each docking model, like0 7CEI_10w
.Check the package subfolders `example/train` and `example/test` to see how to prepare your files.
-
PDB files and PSSM files must have consistent sequences. PSSMGen can be used to get consistent PSSM and PDB files. It is already installed along with iScore. Check README to see how to use it.
You can directly use our trained model to score your docking conformations. The model we provide is trained on docking benchmark version 4 (BM4) data, in total 234 different structures were used (117 positive and 117 negative). More details see this paper.
You can find the model in the package subfolder model/training_set.tar.gz
.
To use this model go into your test
subfolder and type:
# Without MPI
iScore.predict
# With MPI
mpiexec -n ${NPROC} iScore.predict.mpi
The code will automatically detect the path of the model.
This binary will output the binary class and decision value of the conformations in the test set in a text file iScorePredict.txt
.
For the predicted iScore values, the lower value, the better quality of the conformation.
To train the model simply go to your train
subfolder and type:
# Without MPI
iScore.train
# With MPI
mpiexec -n ${NPROC} iScore.train.mpi
This binary will generate a archive file called by default training_set.tar.gz
that contains all the information needed to predict binary classes of a test set using the trained model.
To use this model go into your test
subfolder and type:
# Without MPI
iScore.predict --archive ../train/training_set.tar.gz
# With MPI
mpiexec -n ${NPROC} iScore.predict.mpi --archive ../train/training_set.tar.gz
If you use iScore software, please cite the following articles:
- Cunliang Geng, Yong Jung, Nicolas Renaud, Vasant Honavar, Alexandre M J J Bonvin, and Li C Xue. “iScore: A Novel Graph Kernel-Based Function for Scoring Protein-Protein Docking Models.” Bioinformatics, 2019, https://doi.org/10.1093/bioinformatics/btz496.
- Nicolas Renaud, Yong Jung, Vasant Honavar, Cunliang Geng, Alexandre M. J. J. Bonvin, and Li C. Xue. “iScore: An MPI Supported Software for Ranking Protein–Protein Docking Models Based on a Random Walk Graph Kernel and Support Vector Machines.” SoftwareX, 2020, https://doi.org/10.1016/j.softx.2020.100462.