Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct some spelling errors in generate_dummy_segmentation_extractor #355

Merged
merged 3 commits into from
Sep 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions src/roiextractors/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,23 +118,23 @@ def generate_dummy_segmentation_extractor(
num_rois : int, optional
number of regions of interest, by default 10.
num_frames : int, optional
_description_, by default 30
num_rows : number of frames used in the hypotethical video from which the data was extracted, optional
number of rows in the hypotethical video from which the data was extracted, by default 25.
description, by default 30.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a description instead of this placeholder?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just corrected the _description_to description, what do you mean? was that doing something different?

h-mayorquin marked this conversation as resolved.
Show resolved Hide resolved
num_rows : int, optional
number of rows in the hypothetical video from which the data was extracted, by default 25.
num_columns : int, optional
numbe rof columns in the hypotethical video from which the data was extracted, by default 25.
number of columns in the hypothetical video from which the data was extracted, by default 25.
sampling_frequency : float, optional
sampling frequency of the hypotethical video form which the data was extracted, by default 30.0.
sampling frequency of the hypothetical video from which the data was extracted, by default 30.0.
has_summary_images : bool, optional
whether the dummy segmentation extractor has summary images or not (mean and correlation)
whether the dummy segmentation extractor has summary images or not (mean and correlation).
has_raw_signal : bool, optional
whether a raw fluoresence signal is desired in the object, by default True.
whether a raw fluorescence signal is desired in the object, by default True.
has_dff_signal : bool, optional
whether a relative (df/f) fluoresence signal is desired in the object, by default True.
whether a relative (df/f) fluorescence signal is desired in the object, by default True.
has_deconvolved_signal : bool, optional
whether a deconvolved signal is desired in the object, by default True.
has_neuropil_signal : bool, optional
whether a neuropil signal is desiredi n the object, by default True.
whether a neuropil signal is desired in the object, by default True.
rejected_list: list, optional
A list of rejected rois, None by default.
Expand Down
Loading