├── .github └── workflows │ └── build_and_test.yml ├── .gitignore ├── LICENSE ├── README.md ├── pydssp ├── __init__.py ├── main.py ├── pdbio.py ├── pydssp_numpy.py └── pydssp_torch.py ├── requirements.txt ├── scripts └── pydssp ├── setup.py └── tests ├── test.py └── testset └── TS50 ├── dssp ├── 1ahsA.dssp ├── 1bvyF.dssp ├── 1dx5I.dssp ├── 1eteA.dssp ├── 1h4aX.dssp ├── 1i8nA.dssp ├── 1lpbA.dssp ├── 1mr1D.dssp ├── 1or4A.dssp ├── 1pdoA.dssp ├── 1v7mV.dssp ├── 1y1lA.dssp ├── 2a2lA.dssp ├── 2cayA.dssp ├── 2cviA.dssp ├── 2fvvA.dssp ├── 2gu3A.dssp ├── 2i39A.dssp ├── 2j49A.dssp ├── 2qdlA.dssp ├── 2va0A.dssp ├── 2xcjA.dssp ├── 2xdgA.dssp ├── 2xr6A.dssp ├── 3a4rA.dssp ├── 3aqgA.dssp ├── 3e8mA.dssp ├── 3ejfA.dssp ├── 3fhkA.dssp ├── 3gfsA.dssp ├── 3gknA.dssp ├── 3gwiA.dssp ├── 3hklA.dssp ├── 3ieyB.dssp ├── 3ii2A.dssp ├── 3k7pA.dssp ├── 3l4rA.dssp ├── 3lqcA.dssp ├── 3nbkA.dssp ├── 3nngA.dssp ├── 3ny7A.dssp ├── 3nzmA.dssp ├── 3on9A.dssp ├── 3pivA.dssp ├── 3q4oA.dssp ├── 3so6A.dssp ├── 3t5gB.dssp ├── 3vjzA.dssp ├── 4dkcA.dssp └── 4gcnA.dssp ├── list └── pdb ├── 1ahsA.pdb ├── 1bvyF.pdb ├── 1dx5I.pdb ├── 1eteA.pdb ├── 1h4aX.pdb ├── 1i8nA.pdb ├── 1lpbA.pdb ├── 1mr1D.pdb ├── 1or4A.pdb ├── 1pdoA.pdb ├── 1v7mV.pdb ├── 1y1lA.pdb ├── 2a2lA.pdb ├── 2cayA.pdb ├── 2cviA.pdb ├── 2fvvA.pdb ├── 2gu3A.pdb ├── 2i39A.pdb ├── 2j49A.pdb ├── 2qdlA.pdb ├── 2va0A.pdb ├── 2xcjA.pdb ├── 2xdgA.pdb ├── 2xr6A.pdb ├── 3a4rA.pdb ├── 3aqgA.pdb ├── 3e8mA.pdb ├── 3ejfA.pdb ├── 3fhkA.pdb ├── 3gfsA.pdb ├── 3gknA.pdb ├── 3gwiA.pdb ├── 3hklA.pdb ├── 3ieyB.pdb ├── 3ii2A.pdb ├── 3k7pA.pdb ├── 3l4rA.pdb ├── 3lqcA.pdb ├── 3nbkA.pdb ├── 3nngA.pdb ├── 3ny7A.pdb ├── 3nzmA.pdb ├── 3on9A.pdb ├── 3pivA.pdb ├── 3q4oA.pdb ├── 3so6A.pdb ├── 3t5gB.pdb ├── 3vjzA.pdb ├── 4dkcA.pdb └── 4gcnA.pdb /.github/workflows/build_and_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/.github/workflows/build_and_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/README.md -------------------------------------------------------------------------------- /pydssp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/pydssp/__init__.py -------------------------------------------------------------------------------- /pydssp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/pydssp/main.py -------------------------------------------------------------------------------- /pydssp/pdbio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/pydssp/pdbio.py -------------------------------------------------------------------------------- /pydssp/pydssp_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/pydssp/pydssp_numpy.py -------------------------------------------------------------------------------- /pydssp/pydssp_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/pydssp/pydssp_torch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/pydssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/scripts/pydssp -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1ahsA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1ahsA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1bvyF.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1bvyF.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1dx5I.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1dx5I.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1eteA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1eteA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1h4aX.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1h4aX.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1i8nA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1i8nA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1lpbA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1lpbA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1mr1D.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1mr1D.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1or4A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1or4A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1pdoA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1pdoA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1v7mV.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1v7mV.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/1y1lA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/1y1lA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2a2lA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2a2lA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2cayA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2cayA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2cviA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2cviA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2fvvA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2fvvA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2gu3A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2gu3A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2i39A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2i39A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2j49A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2j49A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2qdlA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2qdlA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2va0A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2va0A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2xcjA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2xcjA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2xdgA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2xdgA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/2xr6A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/2xr6A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3a4rA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3a4rA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3aqgA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3aqgA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3e8mA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3e8mA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3ejfA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3ejfA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3fhkA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3fhkA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3gfsA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3gfsA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3gknA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3gknA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3gwiA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3gwiA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3hklA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3hklA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3ieyB.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3ieyB.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3ii2A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3ii2A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3k7pA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3k7pA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3l4rA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3l4rA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3lqcA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3lqcA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3nbkA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3nbkA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3nngA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3nngA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3ny7A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3ny7A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3nzmA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3nzmA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3on9A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3on9A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3pivA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3pivA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3q4oA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3q4oA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3so6A.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3so6A.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3t5gB.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3t5gB.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/3vjzA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/3vjzA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/4dkcA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/4dkcA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/dssp/4gcnA.dssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/dssp/4gcnA.dssp -------------------------------------------------------------------------------- /tests/testset/TS50/list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/list -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1ahsA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1ahsA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1bvyF.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1bvyF.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1dx5I.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1dx5I.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1eteA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1eteA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1h4aX.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1h4aX.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1i8nA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1i8nA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1lpbA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1lpbA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1mr1D.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1mr1D.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1or4A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1or4A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1pdoA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1pdoA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1v7mV.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1v7mV.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/1y1lA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/1y1lA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2a2lA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2a2lA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2cayA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2cayA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2cviA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2cviA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2fvvA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2fvvA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2gu3A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2gu3A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2i39A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2i39A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2j49A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2j49A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2qdlA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2qdlA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2va0A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2va0A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2xcjA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2xcjA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2xdgA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2xdgA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/2xr6A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/2xr6A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3a4rA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3a4rA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3aqgA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3aqgA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3e8mA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3e8mA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3ejfA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3ejfA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3fhkA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3fhkA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3gfsA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3gfsA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3gknA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3gknA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3gwiA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3gwiA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3hklA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3hklA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3ieyB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3ieyB.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3ii2A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3ii2A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3k7pA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3k7pA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3l4rA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3l4rA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3lqcA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3lqcA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3nbkA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3nbkA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3nngA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3nngA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3ny7A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3ny7A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3nzmA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3nzmA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3on9A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3on9A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3pivA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3pivA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3q4oA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3q4oA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3so6A.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3so6A.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3t5gB.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3t5gB.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/3vjzA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/3vjzA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/4dkcA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/4dkcA.pdb -------------------------------------------------------------------------------- /tests/testset/TS50/pdb/4gcnA.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShintaroMinami/PyDSSP/HEAD/tests/testset/TS50/pdb/4gcnA.pdb --------------------------------------------------------------------------------