-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat(visualizeNetworks): Add legend to cytoscape network #27
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## devel #27 +/- ##
========================================
Coverage ? 88.28%
========================================
Files ? 7
Lines ? 384
Branches ? 0
========================================
Hits ? 339
Misses ? 45
Partials ? 0 ☔ View full report in Codecov by Sentry. |
User description
Motivation and Context
Please include relevant motivation and context of the problem along with a short summary of the solution.
Changes
Please provide a detailed bullet point list of your changes.
Testing
Please describe any unit tests you added or modified to verify your changes.
Checklist Before Requesting a Review
PR Type
Enhancement, Tests
Description
Added a legend to Cytoscape network visualizations.
Adjusted node size and font size based on
logFC
.Enhanced visual style mappings for edge labels and node properties.
Added unit tests for legend functionality and updated existing tests.
Changes walkthrough 📝
NAMESPACE
Update namespace with new RCy3 imports
NAMESPACE
utils_visualizeNetworks.R
Add `.addLegendInCytoscape` function for legend creation
R/utils_visualizeNetworks.R
.addLegendInCytoscape
function to add a legend.visualizeNetworks.R
Enhance `visualizeNetworks` with legend and visual updates
R/visualizeNetworks.R
visualizeNetworks
.logFC
.test-utils_visualizeNetworks.R
Add unit tests for `.addLegendInCytoscape`
tests/testthat/test-utils_visualizeNetworks.R
.addLegendInCytoscape
.test-visualizeNetworks.R
Update tests for `visualizeNetworks` with legend validation
tests/testthat/test-visualizeNetworks.R
visualizeNetworks
..addLegendInCytoscape
and related functions.