Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
haskell-gargantext
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
145
Issues
145
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
haskell-gargantext
Commits
3b114df3
Commit
3b114df3
authored
Mar 25, 2025
by
Alfredo Di Napoli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Be lenient in case of missing forms columns in ngram imports
parent
b466e791
Pipeline
#7477
failed with stages
in 47 minutes and 54 seconds
Changes
2
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
List.hs
src/Gargantext/API/Ngrams/List.hs
+5
-1
TSV.hs
src/Gargantext/Core/Text/List/Formats/TSV.hs
+3
-1
No files found.
src/Gargantext/API/Ngrams/List.hs
View file @
3b114df3
...
...
@@ -181,7 +181,8 @@ ngramsListFromTSVData tsvData = case decodeTsv of
decodeTsv
=
Vec
.
catMaybes
<$>
Tsv
.
decodeWithP
tsvToNgramsTableMap
(
Tsv
.
defaultDecodeOptions
{
Tsv
.
decDelimiter
=
fromIntegral
(
P
.
ord
'
\t
'
)
})
Tsv
.
HasHeader
-- Don't use an header, make it lenient in case the 'forms' are missing.
Tsv
.
NoHeader
binaryData
-- | Converts a plain TSV 'Record' into an NgramsTableMap
...
...
@@ -189,6 +190,9 @@ tsvToNgramsTableMap :: Tsv.Record -> Tsv.Parser (Maybe NgramsTableMap)
tsvToNgramsTableMap
record
=
case
Vec
.
toList
record
of
(
map
P
.
decodeUtf8
->
[
status
,
label
,
forms
])
->
pure
$
Just
$
conv
status
label
forms
-- Garg #381: alias the forms to the empty text.
(
map
P
.
decodeUtf8
->
[
status
,
label
])
->
pure
$
Just
$
conv
status
label
mempty
-- WARNING: This silently ignores errors (#433)
_
->
pure
Nothing
...
...
src/Gargantext/Core/Text/List/Formats/TSV.hs
View file @
3b114df3
...
...
@@ -54,7 +54,9 @@ data TsvList = TsvList
instance
FromNamedRecord
TsvList
where
parseNamedRecord
r
=
TsvList
<$>
r
.:
"status"
<*>
r
.:
"label"
<*>
r
.:
"forms"
-- Issue #381: be lenient in the forms
-- field, if missing, default to the empty text.
<*>
(
fromMaybe
mempty
<$>
r
.:
"forms"
)
instance
ToNamedRecord
TsvList
where
toNamedRecord
(
TsvList
s
l
f
)
=
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment