├── .gitignore ├── LICENSE ├── README.md ├── scripts ├── calc_fcc_matrix.py ├── cluster_fcc.py ├── make_contacts.py ├── pdb_chainxseg.py └── ppretty_clusters.py └── src ├── Makefile ├── contact_fcc.cpp ├── contact_fcc_intra.cpp └── contact_fcc_lig.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/README.md -------------------------------------------------------------------------------- /scripts/calc_fcc_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/scripts/calc_fcc_matrix.py -------------------------------------------------------------------------------- /scripts/cluster_fcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/scripts/cluster_fcc.py -------------------------------------------------------------------------------- /scripts/make_contacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/scripts/make_contacts.py -------------------------------------------------------------------------------- /scripts/pdb_chainxseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/scripts/pdb_chainxseg.py -------------------------------------------------------------------------------- /scripts/ppretty_clusters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/scripts/ppretty_clusters.py -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/contact_fcc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/src/contact_fcc.cpp -------------------------------------------------------------------------------- /src/contact_fcc_intra.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/src/contact_fcc_intra.cpp -------------------------------------------------------------------------------- /src/contact_fcc_lig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haddocking/fcc/HEAD/src/contact_fcc_lig.cpp --------------------------------------------------------------------------------