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

feat: (post-filtering) composable data processing and pipelining #1119

Merged
merged 15 commits into from
Mar 3, 2025
Merged
8 changes: 8 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
S3method(.DollarNames,CosmxReader)
S3method(.DollarNames,VisiumHDReader)
S3method(.DollarNames,XeniumReader)
S3method(.DollarNames,adjustParam)
S3method(.DollarNames,normParam)
S3method(.DollarNames,scaleParam)
export("%>%")
export("activeFeatType<-")
export("activeSpatUnit<-")
Expand Down Expand Up @@ -38,6 +41,7 @@ export(addSpatialCentroidLocationsLayer)
export(addStatistics)
export(addVisiumPolygons)
export(adjustGiottoMatrix)
export(adjustParam)
export(aggregateStacks)
export(aggregateStacksExpression)
export(aggregateStacksLocations)
Expand Down Expand Up @@ -286,6 +290,7 @@ export(makeSignMatrixDWLSfromMatrix)
export(makeSignMatrixPAGE)
export(makeSignMatrixRank)
export(mergeClusters)
export(normParam)
export(normalizeGiotto)
export(objHistory)
export(objName)
Expand Down Expand Up @@ -337,6 +342,7 @@ export(polyStamp)
export(preprocessImageToMatrix)
export(print.combIcfObject)
export(print.icfObject)
export(processExpression)
export(processGiotto)
export(prov)
export(rankSpatialCorGroups)
Expand Down Expand Up @@ -394,6 +400,7 @@ export(sankeyRelate)
export(sankeySet)
export(sankeySetAddresses)
export(saveGiotto)
export(scaleParam)
export(screePlot)
export(selectPatternGenes)
export(setCellMetadata)
Expand Down Expand Up @@ -523,6 +530,7 @@ import(ggplot2)
import(methods)
import(stats, except = density)
import(utils)
importClassesFrom(Matrix,Matrix)
importClassesFrom(data.table,data.table)
importFrom(GiottoClass,"activeFeatType<-")
importFrom(GiottoClass,"activeSpatUnit<-")
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
* `importCosMx()` now supports vectors of filepaths when provided to `$load_images()` and `$load_polys()`
* `importCosMx()` Selected FOVs are now selected in `plot()`.

## New
* `processExpression()` for `giotto` implemented via the `processData()` framework in {GiottoClass} v0.4.7 (see `?processData` and `?process_param`)
* `arcsinh`, `L2`, and `TF-IDF` normalization methods accessible via the `processData()` framework

# Giotto 4.2.0 (2025/01/17)

## Breaking Changes
Expand Down
Loading
Loading