This is a read-only mirror of pymolwiki.org
Difference between revisions of "Pdb use ter records"
Jump to navigation
Jump to search
m (3 revisions) |
m (2 revisions) |
||
(2 intermediate revisions by one other user not shown) | |||
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. | ||
− | ===Example | + | == 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 == | ||
<source lang="python"> | <source lang="python"> | ||
get pdb_use_ter_records # return current value of pdb_use_ter_records | get pdb_use_ter_records # return current value of pdb_use_ter_records | ||
Line 7: | Line 14: | ||
</source> | </source> | ||
− | == | + | == PyMOL API == |
<source lang="python"> | <source lang="python"> | ||
cmd.set('pdb_use_ter_records', 0) | cmd.set('pdb_use_ter_records', 0) | ||
</source> | </source> | ||
− | == | + | == See Also == |
− | [[ | + | |
+ | * [[pdb_conect_nodup]] | ||
+ | * [[pdb_conect_all]] | ||
[[Category:Settings|Pdb_use_ter_records]] | [[Category:Settings|Pdb_use_ter_records]] |
Latest revision as of 03:14, 7 January 2019
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)