Metadata-Version: 2.1
Name: iScore
Version: 0.1.3
Summary: Scoring protein-protein interface using RWGK and SVM
Home-page: https://github.com/DeepRank/iScore
Author: ['Nicolas Renaud', 'Cunliang Geng, Li Xue']
Author-email: n.renaud@esciencecenter.nl
License: Apache Software License 2.0
Description: # iScore
        
        **Support Vector Machine on Graph kernel for protein-protein conformation ranking**
        
        [![Build Status](https://secure.travis-ci.org/DeepRank/iScore.svg?branch=master)](https://travis-ci.org/DeepRank/iScore)
        [![Documentation Status](https://readthedocs.org/projects/iscoredoc/badge/?version=latest)](http://iscoredoc.readthedocs.io/?badge=latest)
        [![Coverage Status](https://coveralls.io/repos/github/DeepRank/iScore/badge.svg?branch=master)](https://coveralls.io/github/DeepRank/iScore?branch=master)
        [![Codacy Badge](https://api.codacy.com/project/badge/Grade/9491c221796e49c0a120ada9aed5fe42)](https://www.codacy.com/app/NicoRenaud/iScore?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=DeepRank/iScore&amp;utm_campaign=Badge_Grade)
        [![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.2630567.svg)](https://doi.org/10.5281/zenodo.2630567)
        
        
        ![alt text](./image/workflow.png)
        
        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` that respectively train a model using a trainging set and use this model to predict the near-native character of unkown conformations.
        
        To use these binaries easily the following file structure is advised :
        
        ```
        root/
         |__train/
         |    |__ pdb/
         |    |__ pssm/
         |    |__ caseID.lst
         |__predict/
              |__pdb/
              |__pssm/
              |__ caseID.lst (optional)
        ```
        
        The `train` subdirectory contains the PDB files and the PSSM files of the conformation contained in the training set. The PSSM files can be calculated using PSSMGen <https://github.com/DeepRank/PSSMGen>. To train the model simply go to the `train` subdirectory and type:
        
        ```console
        mpiexec -n ${NPROC} iScore.train
        ```
        
        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 the `test` subdirectory and type:
        
        ```console
        mpiexec -n ${NPROC} iScore.predict --archive ../train/training_set.tar.gz
        ```
        
        This binary will output the binary class and decision value of the conformations in the test set in a text file `iScorePredict.txt`.
        
        
        
        
Keywords: iScore
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Description-Content-Type: text/markdown
Provides-Extra: doc
Provides-Extra: dev
Provides-Extra: test
