0.0.3 • Published 10 years ago

gdt v0.0.3

Weekly downloads
15
License
-
Repository
github
Last release
10 years ago

global distance test algorithm

an attempt to code gdt algorithm based on what is said here, here and here. this module exports the only function with signature (seq1, seq2, equiv, cutoff), where:

  • seq1 is the first section, which is array of 3d points.

  • seq2 is the second section, which is array of 3d points.

  • equiv is list of corresponding "equivalent" atoms from the first section and second section. what is meant by "equivalence" in this list is outside of gdt scope. equiv is initial list of equivalences for gdt procedure. it has the following format

{
  tgt: [],
  exp: []
}

where tgt is array of indices of points from seq2, and exp is array of indices of corresponding points from seq1.

  • cutoff is cutoff distance.

please check your arguments before invoking it!