From 598464904fc39cc4977451e7ff9388978e629969 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 9 Nov 2023 12:11:36 -0500 Subject: [PATCH 1/2] Fix docstring in CaimanSegmentationExtractor --- .../extractors/caiman/caimansegmentationextractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roiextractors/extractors/caiman/caimansegmentationextractor.py b/src/roiextractors/extractors/caiman/caimansegmentationextractor.py index 1c1c5b64..88463c99 100644 --- a/src/roiextractors/extractors/caiman/caimansegmentationextractor.py +++ b/src/roiextractors/extractors/caiman/caimansegmentationextractor.py @@ -49,7 +49,7 @@ def __init__(self, file_path: PathType): Parameters ---------- file_path: str - The location of the folder containing caiman *.hdmf output file. + The location of the folder containing caiman *.hdf5 output file. """ SegmentationExtractor.__init__(self) self.file_path = file_path From 7a2132662c22dfcd61a6aff22d9f45931b12e1b9 Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Thu, 9 Nov 2023 12:26:21 -0500 Subject: [PATCH 2/2] Update caimansegmentationextractor.py --- .../extractors/caiman/caimansegmentationextractor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/roiextractors/extractors/caiman/caimansegmentationextractor.py b/src/roiextractors/extractors/caiman/caimansegmentationextractor.py index 88463c99..fa840a41 100644 --- a/src/roiextractors/extractors/caiman/caimansegmentationextractor.py +++ b/src/roiextractors/extractors/caiman/caimansegmentationextractor.py @@ -32,7 +32,7 @@ class CaimanSegmentationExtractor(SegmentationExtractor): """A SegmentationExtractor for CaImAn. This class inherits from the SegmentationExtractor class, having all - its funtionality specifically applied to the dataset output from + its functionality specifically applied to the dataset output from the 'CaImAn' ROI segmentation method. """