Commit 13370aa5 authored by delanoe's avatar delanoe

[FIX] Right name and order for lists.

parent fb1bc6a7
...@@ -4,10 +4,11 @@ ...@@ -4,10 +4,11 @@
from gargantext.util.lists import * from gargantext.util.lists import *
LISTTYPES = { LISTTYPES = {
'DOCUMENT': WeightedList, 'DOCUMENT' : WeightedList,
'SYNONYMS': Translations, 'GROUPLIST' : Translations,
'MIAMLIST': UnweightedList, 'STOPLIST' : UnweightedList,
'STOPLIST': UnweightedList, 'MAINLIST' : UnweightedList,
'MAPLIST' : UnweightedList,
'COOCCURRENCES': WeightedMatrix, 'COOCCURRENCES': WeightedMatrix,
} }
...@@ -19,9 +20,10 @@ NODETYPES = [ ...@@ -19,9 +20,10 @@ NODETYPES = [
'CORPUS', 'CORPUS',
'DOCUMENT', 'DOCUMENT',
# lists # lists
'SYNONYMS',
'MIAMLIST',
'STOPLIST', 'STOPLIST',
'GROUPLIST',
'MAINLIST',
'MAPLIST',
'COOCCURRENCES', '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