MolMapping Class |
Namespace: Scilligence.MolEngine
public class MolMapping : AAMapping
The MolMapping type exposes the following members.
| Name | Description | |
|---|---|---|
| MolMapping |
Construct a mapping object for molecule search
|
| Name | Description | |
|---|---|---|
| Highlighting | ||
| MatchAtomCharge |
Match atom charges
| |
| MatchAtomType |
Match atom types
| |
| MatchBondType |
Match bond types
| |
| MatchImplicitH |
Match implicit hydrogen
| |
| MatchImplixcitH | ||
| MatchStereochemistry |
Match stereochemistry
| |
| Screening |
Set this to true to do screening before atom-by-atom mapping
|
| Name | Description | |
|---|---|---|
| Equals | (Inherited from Object.) | |
| Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
| FindMCS |
Find most common substructure
| |
| GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
| GetType | Gets the Type of the current instance. (Inherited from Object.) | |
| MCS |
Find most common substructure
| |
| MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
| Search(MolBase) |
Do the mapping
(Inherited from AAMapping.) | |
| Search(MolBase, AAMappingMode) |
Perform the mapping
(Overrides AAMappingSearch(MolBase, AAMappingMode).) | |
| ToString | Returns a string that represents the current object. (Inherited from Object.) |
Molecule query = Molecule.Read("c1ccccc1"); MolMapping mapping = new MolMapping(); Molecule target = Molecule.Read("CCC1=CC=CC=C1"); ABMap map = mapping.Search(target); BiMap.Enumerator e = map.Q2TAtomMap.GetEnumerator(); while (e.MoveNext()) { Console.WriteLine(e.Current.Key + " --> " + e.Curent.Value); }