Skip to content

Commit

Permalink
Increment version.
Browse files Browse the repository at this point in the history
Set load stimulus movie to False
Temporarily expand manifest range while testing.
  • Loading branch information
morriscb committed Sep 11, 2023
1 parent deab76b commit 9052d0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion allensdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
#
import logging

__version__ = '2.15.2'
__version__ = '2.16.0'


try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def from_lims(
events_filter_scale_seconds: float = 2.0 / 31.0,
events_filter_n_time_steps: int = 20,
exclude_invalid_rois: bool = True,
load_stimulus_movie: bool = True
load_stimulus_movie: bool = False
) -> "BehaviorOphysExperiment":
"""
Parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def sanitize_data_columns(


class BehaviorProjectCloudApi(BehaviorProjectBase, ProjectCloudApiBase):
MANIFEST_COMPATIBILITY = ["1.0.0", "2.0.0"]
MANIFEST_COMPATIBILITY = ["0.0.0", "2.0.0"]

def _load_manifest_tables(self):
expected_metadata = set(
Expand Down
6 changes: 4 additions & 2 deletions allensdk/brain_observatory/behavior/behavior_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def from_lims(
date_of_acquisition: Optional[DateOfAcquisition] = None,
eye_tracking_z_threshold: float = 3.0,
eye_tracking_dilation_frames: int = 2,
load_stimulus_movie: bool = True,
load_stimulus_movie: bool = False,
) -> "BehaviorSession":
"""
Expand Down Expand Up @@ -386,7 +386,9 @@ def from_lims(
See `BehaviorSession.from_nwb`, default 2
load_stimulus_movie : bool
Whether to load the stimulus movie (e.g natrual_movie_one) as
part of loading stimuli. Default True.
part of loading stimuli. Default False. The warped+unwarped
movie loaded will be very large in memory/on disk so be
careful when requesting this option.
Returns
-------
Expand Down

0 comments on commit 9052d0d

Please sign in to comment.