Entering edit mode
9.6 years ago
João Rodrigues
★
2.5k
Just posting it here for better visibility: link to the GitHub repository.
This is a collection of scripts that allow some modifications on PDB files. We use them daily in our lab to cut, edit, paste, etc PDB files before or after modelling tasks. They are perfect for command-line use, quick hacks, integration with BASH scripts, etc. For something more complex, look into a library (e.g. Biopython's Bio.PDB).
Features:
- They have no dependencies whatsoever.
- They can be chained to each other: e.g.,
pdb_selchain.py -A 1abc.pdb | pdb_chain.py -B
This looks great! May I suggest creating a setup.py script and submitting your scripts to PyPI? This is the standard way of distributing python packages/scripts it would benefit both you and everybody else in the long run.
Will consider it indeed. Thanks!