mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-07-03 10:54:07 +02:00
gnu: r-cellid: Fix deprecated argument.
r-seurat update (commit 51b1aea0bd) 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>
This commit is contained in:
committed by
Cayetano Santos
parent
3d87fa6421
commit
363ea2f547
@@ -6272,6 +6272,17 @@ for clusters.")
|
||||
"1bvj7n2qxfvy1fmjqmm1w65fcj7fy5h74i0jgl0a0940mlhd7s9v"))))
|
||||
(properties `((upstream-name . "CelliD")))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
;; "The `slot` argument of `GetAssayData()` was deprecated in
|
||||
;; SeuratObject 5.0.0 and is now defunct.", i = "Please use
|
||||
;; the `layer` argument instead."
|
||||
(add-after 'unpack 'fix-deprecated-argument
|
||||
(lambda _
|
||||
(substitute* '("R/mca.R" "tests/testthat/test_CelliD.R")
|
||||
(("slot") "layer")))))))
|
||||
(propagated-inputs
|
||||
(list r-biocparallel
|
||||
r-data-table
|
||||
|
||||
Reference in New Issue
Block a user