├── .gitignore ├── GUIs ├── correlated.ui ├── custom.scss ├── frequency.ui ├── img │ ├── biocompup.jpg │ ├── restart_alt_black_24dp.svg │ ├── ring_col.svg │ ├── ring_gray.svg │ └── unipd800.png └── plugin.ui ├── LICENCE ├── README.md ├── __init__.py ├── assets ├── hetero_dict.pkl └── hetero_dict_keys.pkl ├── correlation_window.py ├── doc_imgs ├── clusters.png ├── contact_map.png └── edges.png ├── environment-open-source.yml ├── environment-schrodinger.yml ├── frequency_window.py ├── main_window.py ├── ring_api.py ├── ring_local.py ├── rmsd_clustering.py ├── singularity.def └── utilities.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/.gitignore -------------------------------------------------------------------------------- /GUIs/correlated.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/correlated.ui -------------------------------------------------------------------------------- /GUIs/custom.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/custom.scss -------------------------------------------------------------------------------- /GUIs/frequency.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/frequency.ui -------------------------------------------------------------------------------- /GUIs/img/biocompup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/img/biocompup.jpg -------------------------------------------------------------------------------- /GUIs/img/restart_alt_black_24dp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/img/restart_alt_black_24dp.svg -------------------------------------------------------------------------------- /GUIs/img/ring_col.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/img/ring_col.svg -------------------------------------------------------------------------------- /GUIs/img/ring_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/img/ring_gray.svg -------------------------------------------------------------------------------- /GUIs/img/unipd800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/img/unipd800.png -------------------------------------------------------------------------------- /GUIs/plugin.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/GUIs/plugin.ui -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/hetero_dict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/assets/hetero_dict.pkl -------------------------------------------------------------------------------- /assets/hetero_dict_keys.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/assets/hetero_dict_keys.pkl -------------------------------------------------------------------------------- /correlation_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/correlation_window.py -------------------------------------------------------------------------------- /doc_imgs/clusters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/doc_imgs/clusters.png -------------------------------------------------------------------------------- /doc_imgs/contact_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/doc_imgs/contact_map.png -------------------------------------------------------------------------------- /doc_imgs/edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/doc_imgs/edges.png -------------------------------------------------------------------------------- /environment-open-source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/environment-open-source.yml -------------------------------------------------------------------------------- /environment-schrodinger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/environment-schrodinger.yml -------------------------------------------------------------------------------- /frequency_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/frequency_window.py -------------------------------------------------------------------------------- /main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/main_window.py -------------------------------------------------------------------------------- /ring_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/ring_api.py -------------------------------------------------------------------------------- /ring_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/ring_local.py -------------------------------------------------------------------------------- /rmsd_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/rmsd_clustering.py -------------------------------------------------------------------------------- /singularity.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/singularity.def -------------------------------------------------------------------------------- /utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BioComputingUP/ring-pymol/HEAD/utilities.py --------------------------------------------------------------------------------