Browse code

Minor decontX vignette update

Joshua D. Campbell authored on 30/03/2022 12:14:38
Showing 2 changed files

... ...
@@ -35,7 +35,7 @@ jobs:
35 35
         with:
36 36
           r-version: ${{ matrix.config.r }}
37 37
           http-user-agent: ${{ matrix.config.http-user-agent }}
38
-          use-public-rspm: false
38
+          use-public-rspm: true
39 39
 
40 40
       - name: Install XQuartz on macOS
41 41
         if: runner.os == 'macOS'
... ...
@@ -259,6 +259,7 @@ Note that the decontaminated matrix of decontX consists of floating point number
259 259
 counts <- GetAssayData(object = seuratObject, slot = "counts")
260 260
 sce <- SingleCellExperiment(list(counts = counts))
261 261
 sce <- decontX(sce)
262
+seuratObj[["decontXcounts"]] <- CreateAssayObject(counts = decontXcounts(sce))
262 263
 ```
263 264
 
264 265