2 Module : Gargantext.Viz.Phylo
3 Description : Phylomemy definitions and types.
4 Copyright : (c) CNRS, 2017-Present
5 License : AGPL + CECILL v3
6 Maintainer : team@gargantext.org
7 Stability : experimental
10 Specifications of Phylomemy export format.
12 Phylomemy can be described as a Temporal Graph with different scale of
13 granularity of group of ngrams (terms and multi-terms).
15 The main type is Phylo which is synonym of Phylomemy (only difference is
19 Chavalarias, D., Cointet, J.-P., 2013. Phylomemetic patterns
20 in science evolution — the rise and fall of scientific fields. PloS
25 {-# LANGUAGE DeriveGeneric #-}
26 {-# LANGUAGE NoImplicitPrelude #-}
27 {-# LANGUAGE TemplateHaskell #-}
28 {-# LANGUAGE MultiParamTypeClasses #-}
30 module Gargantext.Viz.Phylo where
32 import Prelude (Bounded)
33 import Control.Lens (makeLenses)
34 import Data.Aeson.TH (deriveJSON,defaultOptions)
35 import Data.Maybe (Maybe)
36 import Data.Text (Text)
39 import Data.Vector (Vector)
40 --import Data.Time.Clock.POSIX (POSIXTime)
41 import GHC.Generics (Generic)
42 --import Gargantext.Database.Schema.Ngrams (NgramsId)
43 import Gargantext.Core.Utils.Prefix (unPrefix)
44 import Gargantext.Prelude
51 -- | Global parameters of a Phylo
53 PhyloParam { _phyloParam_version :: Text -- Double ?
54 , _phyloParam_software :: Software
55 , _phyloParam_query :: PhyloQueryBuild
56 } deriving (Generic, Show, Eq)
59 -- | Software parameters
61 Software { _software_name :: Text
62 , _software_version :: Text
63 } deriving (Generic, Show, Eq)
71 -- | Phylo datatype of a phylomemy
72 -- Duration : time Segment of the whole Phylo
73 -- Foundations : vector of all the Ngrams contained in a Phylo (build from a list of actants)
74 -- Periods : list of all the periods of a Phylo
76 Phylo { _phylo_duration :: (Start, End)
77 , _phylo_foundations :: Vector Ngrams
78 , _phylo_foundationsRoots :: PhyloRoots
79 , _phylo_periods :: [PhyloPeriod]
80 , _phylo_param :: PhyloParam
82 deriving (Generic, Show, Eq)
84 -- | The PhyloRoots describe the aggregation of some foundations Ngrams behind a list of Ngrams trees (ie: a forest)
85 -- PeaksLabels are the root labels of each Ngrams trees
87 PhyloRoots { _phylo_rootsLabels :: Vector Ngrams
88 , _phylo_rootsForest :: [Tree Ngrams]
90 deriving (Generic, Show, Eq)
92 -- | A Tree of Ngrams where each node is a label
93 data Tree a = Empty | Node a [Tree a] deriving (Generic, Show, Eq)
96 -- | Date : a simple Integer
99 -- | UTCTime in seconds since UNIX epoch
100 -- type Start = POSIXTime
101 -- type End = POSIXTime
106 ---------------------
107 -- | PhyloPeriod | --
108 ---------------------
111 -- | PhyloStep : steps of phylomemy on temporal axis
112 -- Period: tuple (start date, end date) of the step of the phylomemy
113 -- Levels: levels of granularity
115 PhyloPeriod { _phylo_periodId :: PhyloPeriodId
116 , _phylo_periodLevels :: [PhyloLevel]
118 deriving (Generic, Show, Eq)
126 -- | PhyloLevel : levels of phylomemy on level axis
127 -- Levels description:
128 -- Level -1: Ngram equals itself (by identity) == _phylo_Ngrams
129 -- Level 0: Group of synonyms (by stems + by qualitative expert meaning)
130 -- Level 1: First level of clustering
131 -- Level N: Nth level of clustering
133 PhyloLevel { _phylo_levelId :: PhyloLevelId
134 , _phylo_levelGroups :: [PhyloGroup]
136 deriving (Generic, Show, Eq)
144 -- | PhyloGroup : group of ngrams at each level and step
145 -- Label : maybe has a label as text
146 -- Ngrams: set of terms that build the group
147 -- Quality : map of measures (support, etc.) that depict some qualitative aspects of a phylo
148 -- Period Parents|Childs: weighted link to Parents|Childs (Temporal Period axis)
149 -- Level Parents|Childs: weighted link to Parents|Childs (Level Granularity axis)
150 -- Pointers are directed link from Self to any PhyloGroup (/= Self ?)
152 PhyloGroup { _phylo_groupId :: PhyloGroupId
153 , _phylo_groupLabel :: Text
154 , _phylo_groupNgrams :: [Int]
155 , _phylo_groupMeta :: Map Text Double
156 , _phylo_groupCooc :: Map (Int, Int) Double
157 , _phylo_groupBranchId :: Maybe PhyloBranchId
159 , _phylo_groupPeriodParents :: [Pointer]
160 , _phylo_groupPeriodChilds :: [Pointer]
162 , _phylo_groupLevelParents :: [Pointer]
163 , _phylo_groupLevelChilds :: [Pointer]
165 deriving (Generic, Show, Eq, Ord)
168 -- | Level : A level of aggregation (-1 = Txt, 0 = Ngrams, 1 = Fis, [2..] = Cluster)
170 -- | Index : A generic index of an element (PhyloGroup, PhyloBranch, etc) in a given List
174 type PhyloPeriodId = (Start, End)
175 type PhyloLevelId = (PhyloPeriodId, Level)
176 type PhyloGroupId = (PhyloLevelId, Index)
177 type PhyloBranchId = (Level, Index)
180 -- | Weight : A generic mesure that can be associated with an Id
182 -- | Pointer : A weighted linked with a given PhyloGroup
183 type Pointer = (PhyloGroupId, Weight)
184 -- | Ngrams : a contiguous sequence of n terms
193 -- | Document : a piece of Text linked to a Date
194 data Document = Document
197 } deriving (Show,Generic)
199 -- | Clique : Set of ngrams cooccurring in the same Document
200 type Clique = Set Ngrams
201 -- | Support : Number of Documents where a Clique occurs
203 -- | Fis : Frequent Items Set (ie: the association between a Clique and a Support)
204 data PhyloFis = PhyloFis
205 { _phyloFis_clique :: Clique
206 , _phyloFis_support :: Support
207 , _phyloFis_metrics :: Map (Int,Int) (Map Text [Double])
210 -- | A list of clustered PhyloGroup
211 type PhyloCluster = [PhyloGroup]
214 -- | A List of PhyloGroup in a Graph
215 type GroupNodes = [PhyloGroup]
216 -- | A List of weighted links between some PhyloGroups in a Graph
217 type GroupEdges = [((PhyloGroup,PhyloGroup),Weight)]
218 -- | The association as a Graph between a list of Nodes and a list of Edges
219 type GroupGraph = (GroupNodes,GroupEdges)
227 data PhyloError = LevelDoesNotExist
237 -- | Cluster constructors
238 data Cluster = Fis FisParams
239 | RelatedComponents RCParams
240 | Louvain LouvainParams
241 deriving (Generic, Show, Eq, Read)
243 -- | Parameters for Fis clustering
244 data FisParams = FisParams
245 { _fis_keepMinorFis :: Bool
246 , _fis_minSupport :: Support
247 , _fis_minSize :: Int
248 } deriving (Generic, Show, Eq, Read)
250 -- | Parameters for RelatedComponents clustering
251 data RCParams = RCParams
252 { _rc_proximity :: Proximity } deriving (Generic, Show, Eq, Read)
254 -- | Parameters for Louvain clustering
255 data LouvainParams = LouvainParams
256 { _louvain_proximity :: Proximity } deriving (Generic, Show, Eq, Read)
264 -- | Proximity constructors
265 data Proximity = WeightedLogJaccard WLJParams
266 | Hamming HammingParams
268 deriving (Generic, Show, Eq, Read)
270 -- | Parameters for WeightedLogJaccard proximity
271 data WLJParams = WLJParams
272 { _wlj_threshold :: Double
273 , _wlj_sensibility :: Double
274 } deriving (Generic, Show, Eq, Read)
276 -- | Parameters for Hamming proximity
277 data HammingParams = HammingParams
278 { _hamming_threshold :: Double } deriving (Generic, Show, Eq, Read)
286 -- | Filter constructors
287 data Filter = SmallBranch SBParams deriving (Generic, Show, Eq)
289 -- | Parameters for SmallBranch filter
290 data SBParams = SBParams
291 { _sb_periodsInf :: Int
292 , _sb_periodsSup :: Int
293 , _sb_minNodes :: Int } deriving (Generic, Show, Eq)
301 -- | Metric constructors
302 data Metric = BranchAge deriving (Generic, Show, Eq, Read)
310 -- | Tagger constructors
311 data Tagger = BranchPeakFreq | GroupLabelCooc | GroupDynamics deriving (Show,Generic,Read)
319 -- | Sort constructors
320 data Sort = ByBranchAge deriving (Generic, Show, Read, Enum, Bounded)
321 data Order = Asc | Desc deriving (Generic, Show, Read)
329 -- | A Phyloquery describes a phylomemic reconstruction
330 data PhyloQueryBuild = PhyloQueryBuild
331 { _q_phyloTitle :: Text
332 , _q_phyloDesc :: Text
334 -- Grain and Steps for the PhyloPeriods
335 , _q_periodGrain :: Int
336 , _q_periodSteps :: Int
338 -- Clustering method for building the contextual unit of Phylo (ie: level 1)
339 , _q_contextualUnit :: Cluster
340 , _q_contextualUnitMetrics :: [Metric]
341 , _q_contextualUnitFilters :: [Filter]
343 -- Inter-temporal matching method of the Phylo
344 , _q_interTemporalMatching :: Proximity
346 -- Last level of reconstruction
347 , _q_nthLevel :: Level
348 -- Clustering method used from level 1 to nthLevel
349 , _q_nthCluster :: Cluster
350 } deriving (Generic, Show, Eq)
352 -- | To choose the Phylo edge you want to export : --> <-- <--> <=>
353 data Filiation = Ascendant | Descendant | Merge | Complete deriving (Generic, Show, Read)
354 data EdgeType = PeriodEdge | LevelEdge deriving (Generic, Show, Eq)
361 -- | A PhyloView is the output type of a Phylo
362 data PhyloView = PhyloView
363 { _pv_param :: PhyloParam
365 , _pv_description :: Text
366 , _pv_filiation :: Filiation
368 , _pv_periods :: [PhyloPeriodId]
369 , _pv_metrics :: Map Text [Double]
370 , _pv_branches :: [PhyloBranch]
371 , _pv_nodes :: [PhyloNode]
372 , _pv_edges :: [PhyloEdge]
373 } deriving (Generic, Show)
375 -- | A phyloview is made of PhyloBranches, edges and nodes
376 data PhyloBranch = PhyloBranch
377 { _pb_id :: PhyloBranchId
379 , _pb_metrics :: Map Text [Double]
380 } deriving (Generic, Show)
382 data PhyloEdge = PhyloEdge
383 { _pe_source :: PhyloGroupId
384 , _pe_target :: PhyloGroupId
385 , _pe_type :: EdgeType
386 , _pe_weight :: Weight
387 } deriving (Generic, Show)
389 data PhyloNode = PhyloNode
390 { _pn_id :: PhyloGroupId
391 , _pn_bid :: Maybe PhyloBranchId
394 , _pn_ngrams :: Maybe [Ngrams]
395 , _pn_metrics :: Map Text [Double]
396 , _pn_parents :: Maybe [PhyloGroupId]
397 , _pn_childs :: [PhyloNode]
398 } deriving (Generic, Show)
400 ------------------------
401 -- | PhyloQueryView | --
402 ------------------------
405 data ExportMode = Json | Dot | Svg
406 deriving (Generic, Show, Read)
407 data DisplayMode = Flat | Nested
408 deriving (Generic, Show, Read)
410 -- | A PhyloQueryView describes a Phylo as an output view
411 data PhyloQueryView = PhyloQueryView
414 -- Does the PhyloGraph contain ascendant, descendant or a complete Filiation ? Complet redondant et merge (avec le max)
415 , _qv_filiation :: Filiation
417 -- Does the PhyloGraph contain some levelChilds ? How deep must it go ?
418 , _qv_levelChilds :: Bool
419 , _qv_levelChildsDepth :: Level
421 -- Ordered lists of filters, taggers and metrics to be applied to the PhyloGraph
422 -- Firstly the metrics, then the filters and the taggers
423 , _qv_metrics :: [Metric]
424 , _qv_filters :: [Filter]
425 , _qv_taggers :: [Tagger]
427 -- An asc or desc sort to apply to the PhyloGraph
428 , _qv_sort :: Maybe (Sort,Order)
430 -- A display mode to apply to the PhyloGraph, ie: [Node[Node,Edge],Edge] or [[Node,Node],[Edge,Edge]]
431 , _qv_export :: ExportMode
432 , _qv_display :: DisplayMode
433 , _qv_verbose :: Bool
442 makeLenses ''PhyloParam
443 makeLenses ''Software
446 makeLenses ''PhyloRoots
447 makeLenses ''PhyloGroup
448 makeLenses ''PhyloLevel
449 makeLenses ''PhyloPeriod
450 makeLenses ''PhyloFis
452 makeLenses ''Proximity
456 makeLenses ''PhyloQueryBuild
457 makeLenses ''PhyloQueryView
459 makeLenses ''PhyloView
460 makeLenses ''PhyloBranch
461 makeLenses ''PhyloNode
462 makeLenses ''PhyloEdge
465 ------------------------
466 -- | JSON instances | --
467 ------------------------
470 $(deriveJSON (unPrefix "_phylo_" ) ''Phylo )
471 $(deriveJSON (unPrefix "_phylo_roots" ) ''PhyloRoots )
472 $(deriveJSON defaultOptions ''Tree )
473 $(deriveJSON (unPrefix "_phylo_period" ) ''PhyloPeriod )
474 $(deriveJSON (unPrefix "_phylo_level" ) ''PhyloLevel )
475 $(deriveJSON (unPrefix "_phylo_group" ) ''PhyloGroup )
476 $(deriveJSON (unPrefix "_phyloFis_" ) ''PhyloFis )
478 $(deriveJSON (unPrefix "_software_" ) ''Software )
479 $(deriveJSON (unPrefix "_phyloParam_" ) ''PhyloParam )
481 $(deriveJSON defaultOptions ''Filter )
482 $(deriveJSON defaultOptions ''Metric )
483 $(deriveJSON defaultOptions ''Cluster )
484 $(deriveJSON defaultOptions ''Proximity )
486 $(deriveJSON (unPrefix "_fis_" ) ''FisParams )
487 $(deriveJSON (unPrefix "_hamming_" ) ''HammingParams )
488 $(deriveJSON (unPrefix "_louvain_" ) ''LouvainParams )
489 $(deriveJSON (unPrefix "_rc_" ) ''RCParams )
490 $(deriveJSON (unPrefix "_wlj_" ) ''WLJParams )
491 $(deriveJSON (unPrefix "_sb_" ) ''SBParams )
493 $(deriveJSON (unPrefix "_q_" ) ''PhyloQueryBuild )
494 $(deriveJSON (unPrefix "_pv_" ) ''PhyloView )
495 $(deriveJSON (unPrefix "_pb_" ) ''PhyloBranch )
496 $(deriveJSON (unPrefix "_pe_" ) ''PhyloEdge )
497 $(deriveJSON (unPrefix "_pn_" ) ''PhyloNode )
499 $(deriveJSON defaultOptions ''Filiation )
500 $(deriveJSON defaultOptions ''EdgeType )
503 ----------------------------
504 -- | TODO XML instances | --
505 ----------------------------