Skip to content

Commit

Permalink
Merge pull request datajoint#10 from kushalbakshi/lu-lab
Browse files Browse the repository at this point in the history
  • Loading branch information
ttngu207 authored Jul 30, 2024
2 parents f0afa77 + 7850def commit 700034c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions element_calcium_imaging/imaging_no_curation.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ def make(self, key):
raw_image_files = (scan.ScanInfo.ScanFile & key).fetch("file_path")
files_to_link = [
find_full_path(get_imaging_root_data_dir(), raw_image_file)
for raw_image_file in raw_image_files
for raw_image_file in raw_image_files if not raw_image_file.endswith("_Z.nd2")
]
image_files = []
for file in files_to_link:
Expand All @@ -561,7 +561,7 @@ def make(self, key):
image_files = (scan.ScanInfo.ScanFile & key).fetch("file_path")
image_files = [
find_full_path(get_imaging_root_data_dir(), image_file)
for image_file in image_files
for image_file in image_files if not image_file.endswith("_Z.nd2")
]

method = (ProcessingParamSet * ProcessingTask & key).fetch1(
Expand Down

0 comments on commit 700034c

Please sign in to comment.