@@ -12,6 +12,11 @@ references:
1212 doi : " 10.1101/2025.11.13.688387"
1313
1414arguments :
15+ - name : --input_ist
16+ direction : input
17+ required : true
18+ type : file
19+
1520 - name : --celltype_key
1621 required : false
1722 direction : input
@@ -23,12 +28,21 @@ arguments:
2328 direction : input
2429 type : integer
2530 default : 200
31+ description : Number of bins to use for hexagonal binning, which is used for calculating background transcript contamination
2632
2733 - name : --distance
2834 required : false
2935 direction : input
3036 type : integer
3137 default : 50
38+ description : Maximum distance to consider for local background estimation
39+
40+ - name : --keep_all_cells
41+ required : false
42+ direction : input
43+ type : boolean
44+ default : false
45+ description : Whether to keep cells with 0 counts (may cause errors if set to TRUE)
3246
3347
3448resources :
@@ -43,21 +57,22 @@ engines:
4357 # run: |
4458 # apt-get update && apt-get install -y wget
4559 - type : r
46- bioc : [anndataR, rhdf5, scuttle, DenoIST, devtools]
47- # - type: r
48- # bioc: [SummarizedExperiment,SingleCellExperiment,SpatialExperiment]
49- # bioc_force_install: true
50- # - type: docker
51- # run: |
52- # Rscript -e "BiocManager::install('SingleCellExperiment', type = 'source', force = TRUE, ask = FALSE); devtools::install_github('aaronkwc/DenoIST')"
60+ bioc : [anndataR, rhdf5, scuttle, devtools, DelayedMatrixStats]
61+ cran : [arrow]
62+ - type : r
63+ bioc : [SummarizedExperiment,SingleCellExperiment,SpatialExperiment]
64+ # bioc_force_install: true
65+ - type : docker
66+ run : |
67+ Rscript -e "BiocManager::install('SingleCellExperiment', type = 'source', force = TRUE, ask = FALSE); devtools::install_github('aaronkwc/DenoIST')"
5368
5469 # SingleCellExperiment part can probably be left out again in the future. It currently fixes a bug described in these issues:
5570 # https://github.com/drighelli/SpatialExperiment/issues/171
5671 # https://github.com/satijalab/seurat/issues/9889
5772 # The reinstall of SingleCellExperiment triggers the correct re-install of SpatialExperiment.
5873
59- # Is there a better way to install an r package from github?
60- # The 6 million timeout thing stops it from breaking
74+ # DenoIST is not available for bioconductor 3.22, only 3.23 :/
75+ # if bioconductor is updated, it should make things easier
6176
6277 - type : native
6378
0 commit comments