Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c9e01b2
bump x.y.z version to even y prior to creation of RELEASE_3_23 branch
lshep Apr 28, 2026
7026a93
bump x.y.z version to odd y following creation of RELEASE_3_23 branch
lshep Apr 28, 2026
42fcec0
Add datatype param, check for correct input formats
lahuuki May 5, 2026
b9dcff8
Add vis_clus_c() function for handling visulization of Xenium/centroi…
lahuuki May 5, 2026
e534d9f
Update desciptions for vis_clus_*() functions
lahuuki May 5, 2026
4ac9bc9
Update docs
lahuuki May 5, 2026
90d3488
Add xenium example to experimenthub metadata for LFF ERC
lahuuki May 5, 2026
2fed789
Add spe_xenium_example to fetch_data (need to update github when ready)
lahuuki May 5, 2026
22392ae
clean up vis_clus_c example
lahuuki May 5, 2026
c981336
Add xenium example
lahuuki May 5, 2026
1b734e2
use vis_clus_c for xenium datatype
lahuuki May 5, 2026
3c87953
fix unit
lahuuki May 5, 2026
539787b
fix example, redefine d
lahuuki May 5, 2026
3587f09
Update doc with fixed example
lahuuki May 5, 2026
92b7ae5
Fix cross link in docs (vis_gene_c not defined yet)
lahuuki May 6, 2026
b84be4c
Fix typo in example
lahuuki May 6, 2026
1a0206d
Bump date and version
lahuuki May 6, 2026
a4f21a3
Add vis_gene_c
lahuuki May 6, 2026
0823d98
Update docs
lahuuki May 6, 2026
25cb967
Add datatype arg to vis_gene
lahuuki May 6, 2026
ab82404
Fix typo
lahuuki May 6, 2026
7d0ac11
Adapt vis_gene for xenium data
lahuuki May 6, 2026
4134d6a
Add xenium example, fix auto_crop
lahuuki May 6, 2026
3649ebf
Update date
lahuuki May 7, 2026
dfb9a3c
fix spe_xenium_example name
lahuuki May 7, 2026
3f56fba
Fix Cross-refrences in descriptions
lahuuki May 7, 2026
7d56403
Add datatype as param to run_app - update docs
lahuuki May 20, 2026
4cdc7be
Add datatype checks
lahuuki May 20, 2026
ed9c5f2
get datatype arg in app_ui and app_server
lahuuki May 20, 2026
faff167
Update docs
lahuuki May 20, 2026
4ca4cb5
vis_gene already inherits params from vis_clus
lcolladotor May 20, 2026
f2750c5
Make vis_grid_gene() and vis_grid_clus() support
lcolladotor May 20, 2026
ed5d03a
Fix several things about the Xenium support in
lcolladotor May 20, 2026
ea237b0
Add support on the shiny app for Xenium data
lcolladotor May 20, 2026
7d08e06
Update fetch_data() for the spe_xenium_example data
lcolladotor May 20, 2026
3d18210
Merge remote-tracking branch 'upstream/devel' into xenium_vis_functions
lcolladotor May 20, 2026
046bd0e
v1.25.1 -- `vis_*()` functions and `run_app()` now support visualizin…
lcolladotor May 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: spatialLIBD
Title: spatialLIBD: an R/Bioconductor package to visualize spatially-resolved
transcriptomics data
Version: 1.23.2
Date: 2026-01-09
Version: 1.25.1
Date: 2026-05-20
Authors@R:
c(
person("Leonardo", "Collado-Torres", role = c("aut", "cre"),
Expand Down
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ export(sig_genes_extract)
export(sig_genes_extract_all)
export(sort_clusters)
export(vis_clus)
export(vis_clus_c)
export(vis_clus_p)
export(vis_gene)
export(vis_gene_c)
export(vis_gene_p)
export(vis_grid_clus)
export(vis_grid_gene)
Expand Down
14 changes: 14 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# spatialLIBD 1.25.1

NEW FEATURES

* `fetch_data()` now has example Xenium data you can access
with `type = "spe_xenium_example"`.
* `vis_gene()`, `vis_gene_grid()`, `vis_clus()`, `vis_clus_grid()`
all now support Xenium data. This is partially done through the
new internal functions `vis_gene_c()` and `vis_clus_c()`.
* `run_app()` now supports Xenium data. So `shiny`-powered
apps can now be built for Xenium (10x Genomics) data.
* These features were added by @lahuuki and @lcolladotor
as part of <https://github.com/LieberInstitute/spatialLIBD/pull/121>.

# spatialLIBD 1.23.2

NEW FEATURES
Expand Down
Loading
Loading