File: __init__.py

package info (click to toggle)
python-ncls 0.0.63-hotfix%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 372 kB
  • sloc: ansic: 2,412; python: 205; sh: 18; makefile: 5
file content (32 lines) | stat: -rw-r--r-- 1,017 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
from ncls.src.ncls import NCLS64
from ncls.src.ncls32 import NCLS32

import numpy as np

def NCLS(starts, ends, ids):

    if isinstance(starts, list) or "pandas" in str(type(starts)):
        starts, ends, ids = [np.array(s) for s in [starts, ends, ids]]

    ids = ids.astype(np.int64)
    if starts.dtype == np.int64:
        return NCLS64(starts.astype(np.int64), ends.astype(np.int64), ids)
    elif starts.dtype == np.int32:
        return NCLS32(starts.astype(np.int32), ends.astype(np.int32), ids)
    else:
        raise Exception("Starts/Ends not int64 or int32: " + str(starts.dtype))


def FNCLS(starts, ends, ids):

    from ncls.src.fncls import FNCLS

    if isinstance(starts, list) or "pandas" in str(type(starts)):
        starts, ends, ids = [np.array(s) for s in [starts, ends, ids]]

    if starts.dtype == np.double:
        return FNCLS(starts, ends.astype(np.double), ids)
    else:
        raise Exception("Starts/Ends not double: " + str(starts.dtype))

from ncls.version import __version__