An object containing mol-res-spin selections.
A Selection object represents either a set of selected molecules,
residues and spins, or the union or intersection of two other Selection
objects.
|
|
bool
|
|
bool
|
|
bool
|
|
bool
|
contains_mol(self,
mol=None)
Determine if the molecule name, in string form, is contained in this
selection object. |
source code
|
|
bool
|
contains_res(self,
res_num=None,
res_name=None,
mol=None)
Determine if the residue name, in string form, is contained in this
selection object. |
source code
|
|
bool
|
contains_spin(self,
spin_num=None,
spin_name=None,
res_num=None,
res_name=None,
mol=None)
Determine if the spin is contained in this selection object. |
source code
|
|
bool
|
|
bool
|
|
bool
|
|
|
intersection(self,
select_obj0,
select_obj1)
Make this Selection object the intersection of two other Selection
objects. |
source code
|
|
|
union(self,
select_obj0,
select_obj1)
Make this Selection object the union of two other Selection objects. |
source code
|
|
Inherited from object :
__delattr__ ,
__format__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__sizeof__ ,
__str__ ,
__subclasshook__
|