Calculate the GRAVY score of a amino acid sequence.


License
Other
Install
pip install gravy==1.0.2

Documentation

gravy

Overview

Calculate the GRAVY score of a amino acid sequence.

Installation

To install gravy, you can use pip. Open your terminal and run:

pip install gravy

Usage

CLI

python3 -m gravy CYIQNCPLG
# output: 0.33333
# the formatting can be change with the option '--format'

Python

import gravy
x = gravy.score("CYIQNCPLG")
y = format(x, ".5f")
print(y)
# output: 0.33333
# the same format as the default in the CLI

License

This project is licensed under the MIT License.

Links

Credits

Thank you for using gravy!