├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── SIAMpred ├── __init__.py ├── download_model_weights.py ├── entry_point.py ├── nn_prediction.py └── paths.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/README.md -------------------------------------------------------------------------------- /SIAMpred/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/SIAMpred/__init__.py -------------------------------------------------------------------------------- /SIAMpred/download_model_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/SIAMpred/download_model_weights.py -------------------------------------------------------------------------------- /SIAMpred/entry_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/SIAMpred/entry_point.py -------------------------------------------------------------------------------- /SIAMpred/nn_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/SIAMpred/nn_prediction.py -------------------------------------------------------------------------------- /SIAMpred/paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/SIAMpred/paths.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romainVala/SIAM/HEAD/pyproject.toml --------------------------------------------------------------------------------