Package chemaxon.marvin.alignment
Interface MCSAlignment
Align molecules using the maximum common substructure (MCS) of the given molecules.
Usage examples:
Usage examples:
final MCSAlignment alignment = MCSAlignment.Factory.createNew(reference); final MCSAlignmentResult result = alignment.align(otherMolecule); result.rmsd(); // rmsd value after alignment process result.atomMapping(); // atom mapping array
Please note that this class is marked with @Beta annotation, so it can be subject of incompatible changes or removal in later releases.
- Since:
- 15.7.20
- See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic classFactory class for ConformationAlignment.
- 
Method SummaryModifier and TypeMethodDescriptionAlign the given molecule to the reference.Reference molecule.
- 
Method Details- 
getReferenceMoleculeMolecule getReferenceMolecule()Reference molecule.- Returns:
- the reference structure
 
- 
alignAlign the given molecule to the reference.- Parameters:
- mol- input structure
- Returns:
- the result object or null if the calculation fail
- See Also:
 
 
-