-
Notifications
You must be signed in to change notification settings - Fork 75
feat: Tracer functionality #330
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
Draft
stulacy
wants to merge
127
commits into
master
Choose a base branch
from
feature/tracer-revival
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cellprofiler tracer leek
Merging the last 8 years of commits to master into the cellprofiler-tracer branch. Unlikely this will build first time, will likely need to modify setup.py with the additional Tracer dependencies
Previously ComboBox was monkey-patched, but this is no longer needed with the latest version of wx.
numpy.delete now handles boolean masks differently to before. From the docs: Changed in version 1.19.0: Boolean indices are now treated as a mask of elements to remove, rather than being cast to the integers 0 and 1.
This commit fixes the changes to `set_node_attributes`, `set_edge_attributes`, and the removal of the `.node` attribute from `Graph` objects, as documented on the [networkx migration guide](https://networkx.org/documentation/stable/release/migration_guide_from_1.x_to_2.0.html).
Includes the .weakly_connected_component_subgraphs function being changed to weakly_connected_components which returns a reference to a subgraph rather than the subgraph itself. Also handles the changes to .in_degree and .out_degree which now return a generator rather than a dict. This is compounded by changes to the .keys() and .values() attributes of a dict, which no longer return lists.
More subgraph changes, the removal of the .node attribute, and dealing with dicts items(), values() and keys() no longer returning lists
Hard to believe this is actually coming back... 😲 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Adds the old Tracer functionality back to CPA.
This is a work in progress. After merging in the development on the main branch and addressing changes due to major software updates (notably Python 2 to 3 and Networkx 1 to 3), the app now builds (tested only on Windows) and the main Tracer plots display initially. Interacting with the plots causes an error in
traceui
and the app freezes.