From 6acb21712a2b12739db030ba3c5d9e40581ec189 Mon Sep 17 00:00:00 2001 From: Celine Mercier Date: Sun, 9 Dec 2018 19:11:59 +0100 Subject: [PATCH] Missing commit for build_ref_db: C API file for cython --- python/obitools3/dms/capi/build_reference_db.pxd | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 python/obitools3/dms/capi/build_reference_db.pxd diff --git a/python/obitools3/dms/capi/build_reference_db.pxd b/python/obitools3/dms/capi/build_reference_db.pxd new file mode 100755 index 0000000..4b60eb3 --- /dev/null +++ b/python/obitools3/dms/capi/build_reference_db.pxd @@ -0,0 +1,12 @@ +#cython: language_level=3 + + +cdef extern from "build_reference_db.h" nogil: + + int build_reference_db(const char* dms_name, + const char* refs_view_name, + const char* taxonomy_name, + const char* o_view_name, + const char* o_view_comments, + double threshold) +