Skip to content
Snippets Groups Projects
Commit c8ec787b authored by Philipp Schneider's avatar Philipp Schneider
Browse files

Deactivate filter to only include already checked descriptions

parent 5a9b4335
No related branches found
No related tags found
No related merge requests found
...@@ -336,8 +336,8 @@ csv_input_path = mapping_config['csv_input_path'] ...@@ -336,8 +336,8 @@ csv_input_path = mapping_config['csv_input_path']
df_tblBranch = pd.read_csv(csv_input_path, sep='\t') df_tblBranch = pd.read_csv(csv_input_path, sep='\t')
# Filter all entries that are already checked but not yet published as RDF # Filter all entries that are already checked but not yet published as RDF
df_tblBranch = df_tblBranch[(df_tblBranch['checked_for_publication'] == "true") | (df_tblBranch['checked_for_publication'] == 'secondary-description')] #df_tblBranch = df_tblBranch[(df_tblBranch['checked_for_publication'] == "true") | (df_tblBranch['checked_for_publication'] == 'secondary-description')]
df_tblBranch = df_tblBranch[pd.isnull(df_tblBranch['published_as_rdf'])] #df_tblBranch = df_tblBranch[pd.isnull(df_tblBranch['published_as_rdf'])]
print(df_tblBranch) print(df_tblBranch)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment