Pdb use ter records: Difference between revisions
Jump to navigation
Jump to search
(add see also (Pdb_conect_nodup and Pdb_Conect_All) put the PyMOL api example under the title "PyMOL API") |
No edit summary |
||
Line 1: | Line 1: | ||
When a molecule (e.g. a protein molecule) is saved in pdb format by PyMOL, a line of [http://www.wwpdb.org/documentation/file-format-content/format33/sect9.html#TER TER] record is inserted wherever the residue id is not sequential. To suppress this feature, set <tt>pdb_use_ter_records</tt> value to 0 before saving protein molecules. | When a molecule (e.g. a protein molecule) is saved in pdb format by PyMOL, a line of [http://www.wwpdb.org/documentation/file-format-content/format33/sect9.html#TER TER] record is inserted wherever the residue id is not sequential. To suppress this feature, set <tt>pdb_use_ter_records</tt> value to 0 before saving protein molecules. | ||
== Version History == | |||
* 2.3.0 new implementation, [https://github.com/schrodinger/pymol-testing/commit/82440d760b6b2b48b2cb1ca6c0bb5347870a4541 works correctly with gaps] | |||
* 1.8.4 feature removed | |||
* <= 1.8.2 feature broken for various use cases (e.g. gaps) | |||
* <= 1.5.0.4 feature broken for HETATM polymer residues (e.g. MSE) | |||
===Example=== | ===Example=== |
Revision as of 07:29, 17 December 2018
When a molecule (e.g. a protein molecule) is saved in pdb format by PyMOL, a line of TER record is inserted wherever the residue id is not sequential. To suppress this feature, set pdb_use_ter_records value to 0 before saving protein molecules.
Version History
- 2.3.0 new implementation, works correctly with gaps
- 1.8.4 feature removed
- <= 1.8.2 feature broken for various use cases (e.g. gaps)
- <= 1.5.0.4 feature broken for HETATM polymer residues (e.g. MSE)
Example
get pdb_use_ter_records # return current value of pdb_use_ter_records
set pdb_use_ter_records, 0
PYMOL API
cmd.set('pdb_use_ter_records', 0)