1
0
mirror of https://github.com/ilri/csv-metadata-quality.git synced 2025-05-11 15:46:03 +02:00

Add check for title in citation

This checks if the item title exists in the citation. If it is not
present it could just be missing, or could have minor differences
in the whitespace, accents, etc.
This commit is contained in:
2021-12-05 15:52:42 +02:00
parent 999cc65097
commit 3b40a68279
2 changed files with 37 additions and 0 deletions

View File

@ -194,6 +194,9 @@ def run(argv):
# Check: citation DOI
check.citation_doi(df_transposed[column])
# Check: title in citation
check.title_in_citation(df_transposed[column])
if args.experimental_checks:
experimental.correct_language(df_transposed[column])