schrodinger.application.desmond.fep_struc module¶
Defines a `Struc’ class as a generic represention of molecular structure
-
class
schrodinger.application.desmond.fep_struc.Struc[source]¶ Bases:
object-
extract(indices)[source]¶ Return a new structure object which contains the atoms of the current structure that appear in the specified list.
-
is_chiral_atom(atom_index)[source]¶ Returns true if the atom indicated by
atom_indexis chiral; otherwise, false.- Parameters
atom_index (
int) – Atom index
-
chiral_atoms()[source]¶ Returns the indices of the chiral atoms.
- Return type
listofint- Returns
A list of atom indices
-
ring_atoms()[source]¶ Returns a set of ring atoms.
- Return type
setofint- Returns
A set of atom indices
-
bonded_atoms(atom_index)[source]¶ Returns a list of atom indices of atoms bonded to the indicated atom.
- Parameters
atom_index (
int) – A single index or a list of indices of the atoms to be deleted- Return type
listofint- Returns
A list of atom indices of atoms bonded to the indicated atom
-
-
class
schrodinger.application.desmond.fep_struc.SchrodStruc(struc)[source]¶ Bases:
schrodinger.application.desmond.fep_struc.StrucA `Struc’ subclass based on Schrodinger’s infrastructure
-
extract(indices)[source]¶ Return a new structure object which contains the atoms of the current structure that appear in the specified list.
-
title()[source]¶ Returns the title of this structure. (Normally title’s a user-friendly description)
-
is_chiral_atom(atom_index)[source]¶ Returns true if the atom indicated by
atom_indexis chiral; otherwise, false.- Parameters
atom_index (
int) – Atom index
-
chiral_atoms()[source]¶ Returns the indices of the chiral atoms.
- Return type
listofint- Returns
A list of atom indices
-
ring_atoms(aromaticity=0, group=False)[source]¶ Returns ring atoms.
- Parameters
aromaticity (
int-1, 0, 1) – -1 = non-aromatic, 0 = all, 1 = aromatic. Make the function return the specified type of ring atoms.group (
bool) – If true, returns a list ofsetobjects, each of which is a set of indices of atoms in the same ring; otherwise, returns a single set containing indices of all selected ring atoms.
:rtype :
setofintor alistofsetofint:return : A set or a list of sets of atom indices
-
bonded_atoms(atom_index)[source]¶ Returns a list of atom indices of atoms bonded to the indicated atom.
- Parameters
atom_index (
int) – A single index or a list of indices of the atoms to be deleted- Return type
listofint- Returns
A list of atom indices of atoms bonded to the indicated atom
-
molecules()[source]¶ Returns a list of atom lists. Each element list is a list of atoms of a molecule in the structure. The first element in the returned list belongs to the biggest molecule.
-
delete_atom(atom_index)[source]¶ Deletes a atom.
- Parameters
atom_index (
intorlistofint) – A single index or a list of indices of the atoms to be deleted
-
smarts(atoms=None)[source]¶ Returns a SMARTS string for this structure.
- Parameters
atoms (
listofint) – A list of atom indices
-
write(filename, format=None, mode='a', cil=False)[source]¶ Writes this structure into a file in the designated format.
- Parameters
format (
strorNone) – If its value isNone, the file format is determined from the filename suffix. If specified, it must be one of the following case-sensitive strings: “pdb”, “mol2”, “sd”, “maestro”, “smiles”, and “smilescsv”.
-
id()¶ Returns the ID of this structure.
-
set_id(id)¶ Sets the ID for this structure.
-