File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
src/methods_normalization/spanorm Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11__merge__ : /src/api/comp_method_normalization.yaml
22
33name : spanorm
4- label : " Spatially-aware normalisation for spatial transcriptomics data "
4+ label : " SpaNorm normalization "
55summary : " Spatially-aware normalisation for spatial transcriptomics data"
66description : " Spatially-aware normalisation for spatial transcriptomics data"
77links :
88 documentation : " https://github.com/openproblems-bio/task_ist_preprocessing"
99 repository : " https://github.com/bhuvad/SpaNorm/tree/master"
1010references :
11- doi : " https://doi.org/ 10.1101/2024.05.31.596908"
11+ doi : " 10.1101/2024.05.31.596908"
1212
1313resources :
1414 - type : r_script
@@ -19,7 +19,7 @@ engines:
1919 image : openproblems/base_r:1.0.0
2020 setup :
2121 - type : r
22- bioc : SpaNorm, zellkonverter
22+ bioc : [ SpaNorm, zellkonverter]
2323 - type : native
2424
2525runners :
Original file line number Diff line number Diff line change @@ -3,12 +3,14 @@ library(SingleCellExperiment)
33library(SpatialExperiment )
44library(zellkonverter )
55
6+ # # VIASH START
67par <- list (
7- " input " = ' resources_test/task_ist_preprocessing/mouse_brain_combined/spatial_aggregated_counts.h5ad' ,
8+ " input_spatial_aggregated_counts " = ' resources_test/task_ist_preprocessing/mouse_brain_combined/spatial_aggregated_counts.h5ad' ,
89 " output" = ' tmp/spatial_spanormed_counts.h5ad'
910)
11+ # # VIASH END
1012
11- sce <- readH5AD(par $ input )
13+ sce <- readH5AD(par $ input_spatial_aggregated_counts )
1214sce <- as(sce , " SpatialExperiment" )
1315
1416centroid_x <- colData(sce )$ centroid_x
You can’t perform that action at this time.
0 commit comments