proteindf_bridge.select module

class proteindf_bridge.select.Select[source]

Bases: object

Selecter interface class.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Atom(atom, distance=0.1)[source]

Bases: Select

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_AtomGroup(ref_atomgroup, range=1e-05)[source]

Bases: Select

Return the atoms that also exist in the reference atomgroup.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Name(query)[source]

Bases: Select

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Path(query, use_wildcard=True)[source]

Bases: Select

Deprecated since version Use: Select_Path_wildcard instead. Will be removed in a future version.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_PathRegex(query)[source]

Bases: Select

Select by a regular expression matched against the path.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Path_simple(query)[source]

Bases: Select

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Path_wildcard(query)[source]

Bases: Select

selector using path with wildcard

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Range(pos, d)[source]

Bases: Select

Select by radius.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.

class proteindf_bridge.select.Select_Symbol(atom_symbol)[source]

Bases: Select

Select by atomic symbol.

is_match(obj)[source]

Return True if the condition is matched.

Subclasses must implement this method.