Skip to content

Commit

Permalink
change items to keys for creating dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
jenna-tomkinson committed Jul 19, 2023
1 parent 14a5373 commit fb58cae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 3.processing_features/1.annotate_sc.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
],
"source": [
"# add path to platemaps for each plate \n",
"for plate, _ in plate_info_dictionary.items():\n",
"for plate in plate_info_dictionary.keys():\n",
" # since Plate_3_prime has the same platemap as Plate_3, we need an else statement so that we make sure it adds the \n",
" # path that was given to Plate_3\n",
" if plate != \"Plate_3_prime\":\n",
Expand Down
2 changes: 1 addition & 1 deletion 3.processing_features/scripts/1.annotate_sc.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@


# add path to platemaps for each plate
for plate, _ in plate_info_dictionary.items():
for plate in plate_info_dictionary.keys():
# since Plate_3_prime has the same platemap as Plate_3, we need an else statement so that we make sure it adds the
# path that was given to Plate_3
if plate != "Plate_3_prime":
Expand Down

0 comments on commit fb58cae

Please sign in to comment.