2019-07-26 22:14:10 +02:00
|
|
|
import csv_metadata_quality.check as check
|
2019-07-26 21:11:10 +02:00
|
|
|
import csv_metadata_quality.fix as fix
|
|
|
|
import pandas as pd
|
|
|
|
|
|
|
|
def run():
|
|
|
|
# Read all fields as strings so dates don't get converted from 1998 to 1998.0
|
|
|
|
#df = pd.read_csv('/home/aorth/Downloads/2019-07-26-Bioversity-Migration.csv', dtype=str)
|
|
|
|
#df = pd.read_csv('/tmp/quality.csv', dtype=str)
|
2019-07-26 23:25:30 +02:00
|
|
|
df = pd.read_csv('data/test.csv', dtype=str)
|
2019-07-26 21:11:10 +02:00
|
|
|
|
|
|
|
# Fix whitespace in all columns
|
|
|
|
for column in df.columns.values.tolist():
|
|
|
|
print(f'DEBUG: {column}')
|
|
|
|
|
2019-07-26 22:49:13 +02:00
|
|
|
# Run whitespace fix on all columns
|
2019-07-26 21:11:10 +02:00
|
|
|
df[column] = df[column].apply(fix.whitespace)
|
|
|
|
|
2019-07-26 22:48:24 +02:00
|
|
|
# Run invalid multi-value separator check on all columns
|
|
|
|
df[column] = df[column].apply(check.separators)
|
|
|
|
|
2019-07-26 22:14:10 +02:00
|
|
|
if column == 'dc.identifier.issn':
|
|
|
|
df[column] = df[column].apply(check.issn)
|
|
|
|
|
|
|
|
if column == 'dc.identifier.isbn':
|
|
|
|
df[column] = df[column].apply(check.isbn)
|
|
|
|
|
2019-07-26 21:11:10 +02:00
|
|
|
# Write
|
2019-07-26 22:14:37 +02:00
|
|
|
df.to_csv('/tmp/test.fixed.csv', index=False)
|