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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
.gitignore
.travis.yml
CHANGELOG
LICENSE.txt
MANIFEST.in
build_wheel.sh
pyproject.toml
setup.py
.github/workflows/build_and_upload_wheels.yml
.github/workflows/install_doctest_lint_typecheck.yml
.github/workflows/python-package-conda.yml
examples/test.py
examples/test_sorted_nearest.py
sorted_nearest/__init__.py
sorted_nearest/version.py
sorted_nearest.egg-info/PKG-INFO
sorted_nearest.egg-info/SOURCES.txt
sorted_nearest.egg-info/dependency_links.txt
sorted_nearest.egg-info/requires.txt
sorted_nearest.egg-info/top_level.txt
sorted_nearest/src/__init__.py
sorted_nearest/src/annotate_clusters.c
sorted_nearest/src/annotate_clusters.pyx
sorted_nearest/src/cluster_by.c
sorted_nearest/src/cluster_by.pyx
sorted_nearest/src/clusters.c
sorted_nearest/src/clusters.pyx
sorted_nearest/src/csorted_nearest.pxd
sorted_nearest/src/introns.c
sorted_nearest/src/introns.pyx
sorted_nearest/src/k_nearest.c
sorted_nearest/src/k_nearest.pyx
sorted_nearest/src/k_nearest_ties.c
sorted_nearest/src/k_nearest_ties.pyx
sorted_nearest/src/max_disjoint_intervals.c
sorted_nearest/src/max_disjoint_intervals.pyx
sorted_nearest/src/merge_by.c
sorted_nearest/src/merge_by.pyx
sorted_nearest/src/sorted_nearest.c
sorted_nearest/src/sorted_nearest.pyx
sorted_nearest/src/tiles.c
sorted_nearest/src/tiles.pyx
sorted_nearest/src/utarray.h
sorted_nearest/src/windows.c
sorted_nearest/src/windows.pyx
tests/conftest.py
tests/test_ties.py
|