Skip to content

Commit

Permalink
Fix 3d smFISH notebook as well.
Browse files Browse the repository at this point in the history
I missed this in #1383
  • Loading branch information
Tony Tung committed May 31, 2019
1 parent d3896a3 commit 6c414c6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/source/_static/data_processing_examples/3d_smFISH.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ def processing_pipeline(
decoded IntensityTable containing spots matched to the genes they are hybridized against
"""

print("Loading images...")
primary_image = experiment[fov_name].get_image(FieldOfView.PRIMARY_IMAGES)
all_intensities = list()
codebook = experiment.codebook

for primary_image in experiment[fov_name].iterate_image_type(FieldOfView.PRIMARY_IMAGES):
print("Loading images...")
images = enumerate(experiment[fov_name].get_images(FieldOfView.PRIMARY_IMAGES))

print("Filtering images...")
for image_number, primary_image in images:
print(f"Filtering image {image_number}...")
filter_kwargs = dict(
in_place=True,
verbose=True,
Expand Down

0 comments on commit 6c414c6

Please sign in to comment.