pconpy
pconpy copied to clipboard
Some Fixes
For other users:
- DSSP executable is not available in the provided ftp server. But I can get it using
conda install -c salilab dssp
, and the command ismkdssp
instead ofdssp
. -
from Bio._py3k import StringIO
should be removed in python3. Without StringIO, the output can be read as str instead of file. - without chain_ids defined
residues = get_residues(opts["--pdb"], chain_ids=chain_ids)
will throw an error. Just addchain_ids=None
.
Thank you, Others can refer to: https://github.com/jinhuili-lab/PDB2ContactMap
If possible, I will re-develop it.