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

Qt widget for loading pose datasets as napari Points layers #253

Open
wants to merge 48 commits into
base: napari-dev
Choose a base branch
from

Conversation

niksirbi
Copy link
Member

@niksirbi niksirbi commented Jul 30, 2024

Description

What is this PR

  • Bug fix
  • Addition of a new feature
  • Other

Why is this PR needed?
This is the 2nd in a series of multiple PRs (following #218), in which I'll try breaking down the work-in-progress contained in #112, and debug any obstacles I encounter along the way. These PRs will be merged into the napari-dev branch, until the plugin becomes minimally functional for users, at which point we'll merge the napari-dev branch into main.

This PR closes #47.

What does this PR do?
It replaces the placeholder "hello" Qt widget with an actual widget that can load movement poses dataset into napari as a Points layer, via functions defined in napari/convert.py. The position data variable is represented in the Points array, while confidence is stored in the layer properties, alongside individual and keypoint names. This means that when hovering over any point in napari, one can see these properties displayed.

In future PRs, the properties will be used to control the appearance of points (i.e. mapping various properties to point size, colour, etc.) For now, the points have a fixed style (coloured by individual ID for multi-individual datasets, by keypoint ID for single-individual datasets). To facilitate the consistent styling of these points, I've defined dataclasses in napari/layer_styles.py, where we can store the default styling per layer type.

Currently, the plugin with the poses loader widget looks like this:
Screenshot 2024-09-16 at 13 29 39

What does this PR NOT do?
These features, though planned, are not essential enough to be part of the "napari prototype" #31:

Code structure

The new modules all reside within the movement/napari folder, and include:

  • _meta_widget.py: this creates a container of collapsible widgets (imported from brainglobe-utils). Within this container we can stack many widgets, each handling a different task/workflow step. All widgets except for the currently expanded (active) one will appear collapsed. For now this container only houses one widget - the poses loader (see next point).
  • _loader_widgets.py: contains the PosesLoader class, which defines the first (and for now, only) collapsible widget. PosesLoader is essentially a frontend for the load_poses.from_file() function. When a file is being loaded, the _on_load_clicked method will call the poses_to_napari_tracks function (see next point) which does all the data wrangling required to transform a movement poses dataset into napari compatible array + properties.
  • convert.py: which contains the aforementioned poses_to_napari_tracks function. The idea is that this module will house all movenet->napari and napari->movement conversion utilities. There's something I need to clarify here: why am I creating the data for a napari Tracks layer if my intention is to create a Points layer? That's because the data structure for both of these the same: Points are specified as an array with [z, y, x] columns (in out case that's [time, y, x]), whereas Tracks require columns [track_id, time, y, x]. So by creating a Tracks array, we maintain the track_id information (which we will need in the future anyway), and we get a Points array for "free" (by taking the last 3 columns).
  • layer_styles.py: dataclasses defining styles for napari layers. Here I've created a base LayerStyle class with attributes that are common across layer types, and a PointsStyle child class with attributes specific to Points layers. The latter class implements a set_color_by method, which simplifies the re-coloring of the points according to a chosen property (e.g. keypoint or individual).

New unit test modules exactly mirror the above files (see below).

References

After the current PR is merged, the only absolutely required issue for completing the prototype would be #283. After we have a guide to using the napari plugin, we can merge the prototype to main, and release v0.1 of movement.

How has this PR been tested?

Unit tests have been written for all new modules, and can be found in thetests/test_unit/test_napari_pluginfolder.
The test modules map 1-to-1 to the aforementioned new code modules, so:

  • test_meta_widget.py
  • test_poses_loader_widget.py
  • test_convert.py
  • test_layers_styles.py

There is one untested widget method, PosesLoader._on_browse_clicked which opens a file dialog to select a poses file. Despite spending lots of time on this, I couldn't figure out a way to successfully mock all the actions required for testing the file dialog, without actually opening one. Suggestions welcome. Alternatively, this can be opened as a separate issue. I basically decided to open this PR for review without this unit test, because the whole matter was dragging for far too long, and perhaps testing that widget is not so important.

How to review this PR

  • Install movement from this branch with dev dependencies: pip install -e .[dev]. This will also include the optional dependencies specified under the napari extra.
  • Launch napari with the movement plugin docked: napari -w movement.
  • For manual testing of the plugin, it's easiest to use our sample data (locally found under ~/.movement/data).
  • Use the "load poses" widget to load the corresponding poses file (for the EPM video, you may use any of the EPM files, from DLC or SLEAP).
  • If you wish to visualise the poses against a background, you have two options:
    • Drag and drop a corresponding sample frame into napari (those can be found under ~/.movement/data/frames. This should always work, give you are using the right image for the poses file
    • Install the napari-video plugin, and drag and drop one of the videos found in ~/.movement/data/videos (choose to open it with the video plugin when napari prompts you). Initially I'd planned to include napari-video as a dependency, but I ran into issues during CI. We have to find a way around these as part of Napari plugin reader for videos #49. For what it's worth, the video plugin currently works fine in my M2 Macbook, is laggy on Ubuntu, and fails on Ubuntu CI. See below in "Known issues" for more info.

Known issues

Because reviewing this PR will take a long time, I suggest @lochhh and @sfmig you start to slowly work your way through it, while I focus on solving these known issue in parallel.

Is this a breaking change?

No.

Does this PR require an update to the documentation?

Yes, but this will be done as part of #283.

Checklist:

  • The code has been tested locally
  • Tests have been added to cover all new functionality (almost!)
  • The documentation has been updated to reflect any changes
  • The code has been formatted with pre-commit

Copy link

sonarcloud bot commented Jul 30, 2024

Copy link

codecov bot commented Jul 30, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.80%. Comparing base (9a91fc7) to head (5cb177d).

Additional details and impacted files
@@              Coverage Diff               @@
##           napari-dev     #253      +/-   ##
==============================================
+ Coverage       99.78%   99.80%   +0.02%     
==============================================
  Files              16       18       +2     
  Lines             931     1051     +120     
==============================================
+ Hits              929     1049     +120     
  Misses              2        2              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.


🚨 Try these New Features:

@niksirbi
Copy link
Member Author

Regarding the un-tested PosesLoader._on_browse_clicked widget, @IgorTatarnikov has pointed me to some tests he wrote for a similar widget here. I should be able to adapt them for our use-case.

* initialise napari plugin development

* initialise napari plugin development

* create  skeleton for napari plugin with collapsible widgets

* add basic widget smoke tests and allow headless testing

* do not depend on napari from pip

* include napari option in install instructions

* make meta_widget module private

* pin atlasapi version to avoid unnecessary dependencies

* pin napari >= 0.4.19 from conda-forge

* switched to pip install of napari[all]

* seperation of concerns in widget tests

* add pytest-mock dev dependency
@niksirbi
Copy link
Member Author

niksirbi commented Nov 4, 2024

Regarding the un-tested PosesLoader._on_browse_clicked widget, @IgorTatarnikov has pointed me to some tests he wrote for a similar widget here. I should be able to adapt them for our use-case.

This indeed helped, I've now added the missing test!

Copy link
Collaborator

@lochhh lochhh left a comment

Choose a reason for hiding this comment

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

Great work and thanks @niksirbi for breaking the Napari PR into "digestible" chunks! I don't have much comments on the widget creation (it's a good tutorial for me 😄). Made a few suggestions here and there to simplify the code, to reduce assertions in for loops, and to test arrays/dataframes as a whole rather than in each dimension. I also think we should name the important QObjects so that we can find them by name with findChild and avoid using findChildren with indexing, which assumes fixed (index) positions in the QFormLayout.

movement/napari/layer_styles.py Outdated Show resolved Hide resolved
movement/napari/convert.py Outdated Show resolved Hide resolved
tests/test_unit/test_napari_plugin/test_convert.py Outdated Show resolved Hide resolved
tests/test_unit/test_napari_plugin/test_convert.py Outdated Show resolved Hide resolved
tests/test_unit/test_napari_plugin/test_convert.py Outdated Show resolved Hide resolved
@lochhh
Copy link
Collaborator

lochhh commented Nov 19, 2024

Forgot a couple of questions/suggestions I had in mind:

  • Is it possible to hide "brainmapper" from the Plugins dropdown?
  • There is no option to load an image layer, except via "new image from clipboard". I can't drag and drop either.
  • We have in movement CLI movement info. We could also have movement gui as an alias to napari -w movement.

@sfmig
Copy link
Contributor

sfmig commented Nov 19, 2024

We could also have movement gui as an alias to napari -w movement.

Love this

niksirbi and others added 10 commits November 19, 2024 11:24
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.6.9 → v0.7.2](astral-sh/ruff-pre-commit@v0.6.9...v0.7.2)
- [github.com/pre-commit/mirrors-mypy: v1.11.2 → v1.13.0](pre-commit/mirrors-mypy@v1.11.2...v1.13.0)
- [github.com/mgedmin/check-manifest: 0.49 → 0.50](mgedmin/check-manifest@0.49...0.50)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* implement compute_speed and compute_path_length functions

* added speed to existing kinematics unit test

* rewrote compute_path_length with various nan policies

* unit test compute_path_length across time ranges

* fixed and refactor compute_path_length and its tests

* fixed docstring for compute_path_length

* Accept suggestion on docstring wording

Co-authored-by: Chang Huan Lo <[email protected]>

* Remove print statement from test

Co-authored-by: Chang Huan Lo <[email protected]>

* Ensure nan report is printed

Co-authored-by: Chang Huan Lo <[email protected]>

* adapt warning message match in test

* change 'any' to 'all'

* uniform wording across path length docstrings

* (mostly) leave time range validation to xarray slice

* refactored parameters for test across time ranges

* simplified test for path lenght with nans

* replace drop policy with ffill

* remove B905 ruff rule

* make pre-commit happy

---------

Co-authored-by: Chang Huan Lo <[email protected]>
Copy link

sonarcloud bot commented Nov 19, 2024

@niksirbi
Copy link
Member Author

niksirbi commented Nov 19, 2024

Hey @lochhh thank you for the comprehensive review!

I've basically implemented all of your excellent suggestions, so have a look and see if you're happy with how I've patched things. I made a bit of a mess with syncing the 3 branches - main, napari-dev, and this one - so the commit history may look a bit scary, but I things should be correct now, without conflicts.

Regarding your additional points:

Is it possible to hide "brainmapper" from the Plugins dropdown?

Good point, it's distracting. I guess this is sneaking in through the brainglobe-utils dependency. I will look into removing that in a separate PR.

There is no option to load an image layer, except via "new image from clipboard". I can't drag and drop either.

Does selecting FIle > Open File(s)... from the top napari menu work? For images that should work out of the box. For videos, it will prompt you to choose a plugin (i.e. napari-video) if you have that installed. Let me know if this works and I'll make it part of the user guide.

We have in movement CLI movement info. We could also have movement gui as an alias to napari -w movement.

Excellent idea! I've opened this as a separate small PR. I don't really like the word "gui" because it's an acronym. How do we feel about movement launch (which also matches datashuttle launch, about which me and Joe had a similar conversation).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Visualise pose tracks as a napari Points layer
3 participants