This is a read-only mirror of pymolwiki.org

Difference between revisions of "Removealt"

From PyMOL Wiki
Jump to navigation Jump to search
(obj=all, comma)
 
m (8 revisions)
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= Overview =
+
{{Infobox script-repo
 +
|type      = script
 +
|filename  = removealt.py
 +
|author    = [[User:Inchoate|Jason Vertrees]]
 +
|license  = Free
 +
}}
 +
 
 
[[removeAlt]] removes all atoms from '''obj''' that have alternate locations but aren't altloc '''keep'''.
 
[[removeAlt]] removes all atoms from '''obj''' that have alternate locations but aren't altloc '''keep'''.
  
= The Code =
+
== Usage ==
<source lang="python">
+
 
def removeAlt(obj="(all)", keep="A"):
+
removealt [ obj [, keep ]]
        """
+
 
        removeAlt -- remove all alternate location-atoms not of altloc "keep" from object.
+
== Example ==
 +
 
 +
<syntaxhighlight lang="python">
 +
import removealt
 +
 
 +
fetch 1hxb, async=0
  
        input:
+
select ligA, alt a
                obj -- the object(s) to remove the atoms frmo
+
select ligB, alt b
                keep -- which type of alt loc to keep
 
  
        output: none -- removes atoms
+
count_atoms ligA    # 49 atoms
 +
count_atoms ligB    # 49 atoms
  
        examples:
+
removealt 1hxb, b
                removeAlt # remove all altLocations that aren't altloc A
 
                removeAlt pdbID, C  # remove all but C altlocations from pdbID
 
        """
 
        # select & remove all non A altlocs
 
        remStr = "%s and not (alt ''+%s)" % (obj, keep);
 
        cmd.remove(remStr);
 
        # reset the PDB information
 
        cmd.alter( obj, "alt=''")
 
  
cmd.extend("removeAlt", removeAlt)
+
count_atoms ligA    # 0 atoms
</source>
+
count_atoms ligB    # 49 atoms
 +
</syntaxhighlight>
  
= See Also =
+
== See Also ==
 
[[Property_Selectors#Alternate_Locations|Handling Alternate Locations]] and [[alter]]
 
[[Property_Selectors#Alternate_Locations|Handling Alternate Locations]] and [[alter]]
  
 
[[Category:Script_Library]]
 
[[Category:Script_Library]]
 
[[Category:ObjSel_Scripts]]
 
[[Category:ObjSel_Scripts]]
 +
[[Category:Pymol-script-repo]]

Latest revision as of 03:49, 28 March 2014

Type Python Script
Download removealt.py
Author(s) Jason Vertrees
License Free
This code has been put under version control in the project Pymol-script-repo

removeAlt removes all atoms from obj that have alternate locations but aren't altloc keep.

Usage

removealt [ obj [, keep ]]

Example

import removealt

fetch 1hxb, async=0

select ligA, alt a
select ligB, alt b

count_atoms ligA    # 49 atoms
count_atoms ligB    # 49 atoms

removealt 1hxb, b

count_atoms ligA    # 0 atoms
count_atoms ligB    # 49 atoms

See Also

Handling Alternate Locations and alter