-
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(getSubnetworkFromIndra): Add additional filters #30
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 #30 +/- ##
==========================================
+ Coverage 86.73% 87.41% +0.68%
==========================================
Files 7 7
Lines 407 429 +22
==========================================
+ Hits 353 375 +22
Misses 54 54 ☔ View full report in Codecov by Sentry. |
PR Type
Enhancement, Tests
Description
Added new filtering parameters to
getSubnetworkFromIndra
function.Implemented filtering logic for statement types, paper count, and evidence count.
Updated documentation to reflect new parameters and functionality.
Enhanced unit tests to validate new filtering features.
Changes walkthrough 📝
getSubnetworkFromIndra.R
Add filtering parameters and logic to main function
R/getSubnetworkFromIndra.R
statement_types
,paper_count_cutoff
, andevidence_count_cutoff
.edges.
utils_getSubnetworkFromIndra.R
Add utility functions for filtering INDRA response and edges
R/utils_getSubnetworkFromIndra.R
.filterIndraResponse
to filter INDRA statements by type andevidence count.
.filterEdgesDataFrame
to filter edges by paper count.getSubnetworkFromIndra.Rd
Update documentation for new filtering parameters
man/getSubnetworkFromIndra.Rd
test-getSubnetworkFromIndra.R
Update and enhance tests for filtering features
tests/testthat/test-getSubnetworkFromIndra.R
statement_types
parameter in function calls.