diff options
| author | Romain GARBAGE <romain.garbage@inria.fr> | 2026-05-07 14:26:34 +0200 |
|---|---|---|
| committer | Cayetano Santos <csantosb@inventati.org> | 2026-05-07 15:10:07 +0200 |
| commit | 363ea2f547c67926aa859520c028372eb74cc585 (patch) | |
| tree | 4bc7312538a02eef7dfe22be18f81167ca823f77 | |
| parent | 3d87fa6421116266b65ccd975ab7aac837a21452 (diff) | |
gnu: r-cellid: Fix deprecated argument.
r-seurat update (commit 51b1aea0bd633136c27ff082fc52de9f1fdec04c) broke
this package as it is using deprecated arguments that were removed.
* gnu/packages/bioconductor.scm (r-cellid)[arguments]: Add
’fix-deprecated-argument #:phase.
Merges guix/guix!8414
Change-Id: I12aa8665aa694836ea21f199b521cc208af317a2
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
Modified-by: Cayetano Santos <csantosb@inventati.org>
| -rw-r--r-- | gnu/packages/bioconductor.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index fb4ef766079..6b5fcf7bc24 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm | |||
| @@ -6272,6 +6272,17 @@ for clusters.") | |||
| 6272 | "1bvj7n2qxfvy1fmjqmm1w65fcj7fy5h74i0jgl0a0940mlhd7s9v")))) | 6272 | "1bvj7n2qxfvy1fmjqmm1w65fcj7fy5h74i0jgl0a0940mlhd7s9v")))) |
| 6273 | (properties `((upstream-name . "CelliD"))) | 6273 | (properties `((upstream-name . "CelliD"))) |
| 6274 | (build-system r-build-system) | 6274 | (build-system r-build-system) |
| 6275 | (arguments | ||
| 6276 | (list | ||
| 6277 | #:phases | ||
| 6278 | #~(modify-phases %standard-phases | ||
| 6279 | ;; "The `slot` argument of `GetAssayData()` was deprecated in | ||
| 6280 | ;; SeuratObject 5.0.0 and is now defunct.", i = "Please use | ||
| 6281 | ;; the `layer` argument instead." | ||
| 6282 | (add-after 'unpack 'fix-deprecated-argument | ||
| 6283 | (lambda _ | ||
| 6284 | (substitute* '("R/mca.R" "tests/testthat/test_CelliD.R") | ||
| 6285 | (("slot") "layer"))))))) | ||
| 6275 | (propagated-inputs | 6286 | (propagated-inputs |
| 6276 | (list r-biocparallel | 6287 | (list r-biocparallel |
| 6277 | r-data-table | 6288 | r-data-table |
