mirror of
https://github.com/ISEAL-Community/iseal-core.git
synced 2025-05-08 14:16:03 +02:00
Update references to shema-fields.csv
This commit is contained in:
@ -20,7 +20,7 @@ def make_core():
|
||||
iseal = URIRef(NS)
|
||||
g.add((iseal, RDF.type, OWL.Ontology))
|
||||
|
||||
df = pd.read_csv("../data/schema-fields.csv")
|
||||
df = pd.read_csv("../data/iseal-core.csv")
|
||||
df.dropna(how="all", axis=1)
|
||||
df.fillna("", inplace=True)
|
||||
|
||||
|
@ -138,7 +138,7 @@ def parseSchema(schema_df):
|
||||
|
||||
|
||||
parser = argparse.ArgumentParser(
|
||||
description="Parse an ISEAL schema Excel file to produce documentation about metadata requirements."
|
||||
description="Parse an ISEAL schema CSV file to produce documentation about metadata requirements."
|
||||
)
|
||||
parser.add_argument(
|
||||
"--clean",
|
||||
@ -154,7 +154,7 @@ parser.add_argument(
|
||||
parser.add_argument(
|
||||
"-i",
|
||||
"--input-file",
|
||||
help="Path to schema fields file (schema-fields.csv).",
|
||||
help="Path to schema fields file (ie, iseal-core.csv).",
|
||||
required=True,
|
||||
type=argparse.FileType("r"),
|
||||
)
|
||||
|
Reference in New Issue
Block a user