Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 1.18 KB

README.md

File metadata and controls

23 lines (17 loc) · 1.18 KB

Build Status PyPI PyPI - Downloads

Rhapsody

Python program, based on ProDy, for pathogenicity prediction of human missense variants.

Install using pip

Rhapsody is published on PyPI. To install Rhapsody, please use pip in the terminal:

$ pip install -U prody-rhapsody

Install from source

Rhapsody is written in pure Python so no local compilation is needed. To install from the source, you can download or clone Rhapsody to your prefered location (e.g. path/to/rhapsody/), and then add that location to PYTHONPATH environmental variable. For example, on Linux you can add the following line to your ~/.bashrc:

EXPORT PYTHONPATH="path/to/rhapsody/:$PYTHONPATH"

If you are running on Windows, please follow this tutorial:

How to add to the PYTHONPATH in Windows, so it finds my modules/packages? - stackoverflow