Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tdiprima committed Apr 1, 2020
1 parent c687f61 commit 3b6e6cf
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion annotations.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,10 @@ def mark(my_writer, my_img, none_row, current_type):
# creator, created_date, provenance.analysis source, computation, execution_id
for i in my_list:
# print(i)
X = i['provenance']['analysis']
if "Human" in current_type:
X = i['provenance']['analysis']
else:
X = i['analysis']
creator = get_peep(i, X)
created_date = get_date(i, X)

Expand Down

0 comments on commit 3b6e6cf

Please sign in to comment.