-
Notifications
You must be signed in to change notification settings - Fork 13
Change: Updates to aggregation #300
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
Merged
Merged
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
78a314b
aggregateFeatures and aggregation changes
jiajic 21f2f78
enh: improve exprObj show() methods
jiajic 44cb004
fix: revert to previous flip handling for images
jiajic 87ee8ba
chore: remove unused flip image internal
jiajic 749c7b6
enh: tif tool updates
jiajic a7aee31
feat: aggregation changes
jiajic c0b072b
chore: docs edits
jiajic eab9899
chore: move gpoints and gpoly updates in init giotto into updateGiott…
jiajic 12bd132
update `combineFeatureOverlapData()` to work with new overlap structure
jiajic 4423677
chore: catch up dev
jiajic fae4613
chore: docs
jiajic d6eea2c
Merge branch 'dev' of https://github.com/drieslab/GiottoClass into pa…
jiajic e6f82e1
fix: scoping on local seed in tests
jiajic f9e0017
fix: as.matrix method for points overlaps
jiajic 0a7823d
enh: make subsetting point overlaps more robust
jiajic 9e75f3e
enh: dim() and rbind() for point overlaps
jiajic bd6c56b
fix: `aggregateStacksPolygonOverlaps()` for new point overlap impleme…
jiajic c303535
fix: remove now unecessary handling for overlaps saving
jiajic 9f654dc
fix: incorrect overlap point feat_id tracking
jiajic 2630dbb
update: test for new param names
jiajic b1be26f
chore: update test expected based on changes
jiajic 1092a3f
fix: remove unused overlap reading
jiajic 1feeea2
fix: make overlap reading versioned
jiajic 7c0ce21
fix: checking logic for overlaps load
jiajic a8bbfb6
chore: docs
jiajic 47e2247
chore: catch up to staging
jiajic e18de85
Revert "chore: catch up to staging"
jiajic beffc3d
Reapply "chore: catch up to staging"
jiajic 7b5b01f
chore: catch up to dev
jiajic 20562b8
chore: remove unused line
jiajic 98402e3
Merge branch 'dev' of https://github.com/drieslab/GiottoClass into pa…
jiajic 0670056
chore: docs
jiajic 01e16ab
ci: update
jiajic b786fbe
enh: ncol and nrow for new overlap objects
jiajic e5cdacc
chore: conflict
jiajic 43c6e56
enh: df coercion for overlapIntesityDT
jiajic 70ef2ab
chore: improve docs for utility class
jiajic bb68a1e
Merge branch 'dev' into patch_agg_feats
jiajic a2dd359
Merge branch 'dev' into patch_agg_feats
jiajic 386c6b8
chore: catch up to dev
jiajic aa55408
catchup and fix conflict
jiajic e19c090
change: overlap handling during gpoly rbind
jiajic 4b43b24
change: default point overlap method -> vector
jiajic 776324e
chore: docs
jiajic aa15e9c
fix test for new vector overlap default
jiajic df09a05
fix: raster aggregate count col
jiajic 55393be
fix: aggregation testing: points count gen
jiajic e9e8367
chore: reorganize for clarity
jiajic 6149adb
refactor: point extraction
jiajic 6cfd6fd
chore: update tests
jiajic 475daa5
fixes
jiajic 55a4253
Update aggregate.R
jiajic f976dcc
Update test-aggregate.R
jiajic bc4eebc
chore: docs
jiajic 8bee86a
test fixes
jiajic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Missing symmetrical
as.data.frameforoverlapIntensityDTYou registered
as.data.frame.overlapPointDT, but its sibling classoverlapIntensityDTdid not get the same treatment. Down-stream code that relies onas.data.frame()for both overlap classes will break.+S3method(as.data.frame,overlapIntensityDT)Add the roxygen tag to the method implementation and re-document.
🤖 Prompt for AI Agents