aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJohn Nduli2024-07-02 21:29:08 +0300
committerBonfaceKilz2024-07-03 14:24:01 +0300
commit012a70920e19528543608faf575392119a4babf7 (patch)
tree89244db3f63d9cd0286c962438d51ef64e92a9cc /scripts
parentdefb35b99e9a10e9ea0481b2481985f91e5c203b (diff)
downloadgenenetwork3-012a70920e19528543608faf575392119a4babf7.tar.gz
feat: index rif and wiki without positions
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/index-genenetwork2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/index-genenetwork b/scripts/index-genenetwork
index a8d23ff..57cd1b4 100755
--- a/scripts/index-genenetwork
+++ b/scripts/index-genenetwork
@@ -300,7 +300,7 @@ def index_from_dictionary(keys: Hashable, prefix: str, dictionary: dict):
entry = dictionary.get(keys)
if not entry:
return
- termgenerator.index_text(entry, 0, prefix)
+ termgenerator.index_text_without_positions(entry, 0, prefix)
index_text_without_positions = lambda text: termgenerator.index_text_without_positions(text)