Commit 432cb967 authored by delanoe's avatar delanoe

[FIX] Right name and order for lists.

parent fb686a66
......@@ -4,10 +4,11 @@
from gargantext.util.lists import *
LISTTYPES = {
'DOCUMENT': WeightedList,
'SYNONYMS': Translations,
'MIAMLIST': UnweightedList,
'STOPLIST': UnweightedList,
'DOCUMENT' : WeightedList,
'GROUPLIST' : Translations,
'STOPLIST' : UnweightedList,
'MAINLIST' : UnweightedList,
'MAPLIST' : UnweightedList,
'COOCCURRENCES': WeightedMatrix,
}
......@@ -19,9 +20,10 @@ NODETYPES = [
'CORPUS',
'DOCUMENT',
# lists
'SYNONYMS',
'MIAMLIST',
'STOPLIST',
'GROUPLIST',
'MAINLIST',
'MAPLIST',
'COOCCURRENCES',
]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment