# gdt

> global distance test algorithm

Latest version **0.0.3** (published 2014-05-31) · 0 weekly downloads

## Install

```sh
npm install gdt
pnpm add gdt
yarn add gdt
bun add gdt
```

## Health

**Score 10/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.3 |
| Published | 2014-05-31 |
| First published | 2014-05-08 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 5 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | ttrfstud |

## Links

- npm: https://www.npmjs.com/package/gdt
- Repository: https://github.com/ttrfstud/gdt
- Issues: https://github.com/ttrfstud/gdt/issues
- npm.io page: https://npm.io/package/gdt

## Dependencies (5)

- [mmult](https://npm.io/package/mmult.md) 0.0.0
- [kabsch](https://npm.io/package/kabsch.md) 0.0.2
- [transpose](https://npm.io/package/transpose.md) 0.0.2
- [smith-waterman](https://npm.io/package/smith-waterman.md) 0.0.0
- [jacobi-eigenvalue](https://npm.io/package/jacobi-eigenvalue.md) 0.0.4

## Recent versions

- 0.0.3 (latest) — 2014-05-31
- 0.0.2 — 2014-05-31
- 0.0.1 — 2014-05-31
- 0.0.0 — 2014-05-08

## README

global distance test algorithm
=====================================
an attempt to code gdt algorithm based on what is said [here](http://predictioncenter.org/casp/casp7/public/doc/LCS_GDT.README), [here](http://peds.oxfordjournals.org/content/9/12/1093.full.pdf) and [here](http://www.ncbi.nlm.nih.gov/pmc/articles/PMC168977/pdf/gkg571.pdf). 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

```javascript
{
  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!

---
_Source: https://npm.io/package/gdt · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
