Package rdkit :: Package Chem :: Package FeatMaps :: Module FeatMaps :: Class FeatDirScoreMode
[hide private]
[frames] | no frames]

type FeatDirScoreMode

source code

object --+
         |
        FeatDirScoreMode

Class Variables [hide private]
  Ignore = 0
ignore feature directions...
  DotFullRange = 1
Use the dot product and allow negative contributions when directions are anti-parallel.
  DotPosRange = 2
Use the dot product and scale contributions to lie between zero and one.
Class Variable Details [hide private]

Ignore

ignore feature directions
  

Value:
0

DotFullRange

Use the dot product and allow negative contributions when
directions are anti-parallel.
e.g. score = dot(f1Dir,f2Dir)

Value:
1

DotPosRange

Use the dot product and scale contributions to lie between
zero and one.
e.g. score = ( dot(f1Dir,f2Dir) + 1 ) / 2

Value:
2