Skip to content

Commit

Permalink
Add wp to blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
ddomingof committed Mar 26, 2020
1 parent b6e380b commit 8e1482e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pathme/wikipathways/rdf_sparql.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ def wikipathways_to_pickles(
pickle_path = os.path.join(export_folder, '{}.pickle'.format(rdf_file.strip('.ttl')))

# Skip if BEL file already exists
if os.path.exists(pickle_path):
# TODO: Remove pathway from blacklist
if os.path.exists(pickle_path) or rdf_file in {'WP1772.ttl'}:
continue

# Parse pathway rdf_file and logger stats
Expand Down

0 comments on commit 8e1482e

Please sign in to comment.