mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: r-msnbase: Add missing inputs.
* gnu/packages/bioconductor.scm (r-msnbase)[native-inputs]: Add r-msdata, r-rpx, r-summarizedexperiment, and r-xml. [arguments]: Add phases 'set-HOME and 'delete-bad-tests. [properties]: Tell updater to avoid a dependency cycle. Change-Id: I49f6ec0c516f610785c3e79e0d4a4ad74a9ac38c
This commit is contained in:
parent
3535a30b5d
commit
11debd4833
1 changed files with 38 additions and 2 deletions
|
@ -10923,8 +10923,39 @@ (define-public r-msnbase
|
|||
(sha256
|
||||
(base32
|
||||
"0cykb5kk524i3ssps798c7wfpa3f8svdgxa8sfvc1pxm0fxypfgb"))))
|
||||
(properties `((upstream-name . "MSnbase")))
|
||||
(properties
|
||||
`((upstream-name . "MSnbase")
|
||||
;; Avoid dependency cycle.
|
||||
(updater-ignored-native-inputs . ("r-prolocdata"))))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'set-HOME
|
||||
(lambda _ (setenv "HOME" "/tmp")))
|
||||
(add-after 'unpack 'delete-bad-tests
|
||||
(lambda _
|
||||
;; Needs r-prolocdata
|
||||
(for-each delete-file
|
||||
'("tests/testthat/test_average.R"
|
||||
"tests/testthat/test_fdata-selection.R"
|
||||
"tests/testthat/test_foi.R"
|
||||
"tests/testthat/test_nadata.R"
|
||||
"tests/testthat/test_trimws.R"
|
||||
"tests/testthat/test_MSnSet.R"))
|
||||
;; Attempts to run "hostname"
|
||||
(delete-file "tests/testthat/test_readMSData2.R")
|
||||
;; Needs Internet access
|
||||
(for-each delete-file
|
||||
'("tests/testthat/test_fileNames.R"
|
||||
"tests/testthat/test_MSmap.R"
|
||||
"tests/testthat/test_MzTab.R"
|
||||
"tests/testthat/test_MzTab_09.R"))
|
||||
;; Fails with: object 'hyperLOPIT2015' not found
|
||||
(delete-file "tests/testthat/test_utils.R")
|
||||
;; Fails with: invalid 'description' argument
|
||||
(delete-file "tests/testthat/test_io.R"))))))
|
||||
(propagated-inputs
|
||||
(list r-affy
|
||||
r-biobase
|
||||
|
@ -10949,7 +10980,12 @@ (define-public r-msnbase
|
|||
r-scales
|
||||
r-vsn))
|
||||
(native-inputs
|
||||
(list r-knitr r-testthat))
|
||||
(list r-knitr
|
||||
r-msdata
|
||||
r-rpx
|
||||
r-summarizedexperiment
|
||||
r-testthat
|
||||
r-xml))
|
||||
(home-page "https://github.com/lgatto/MSnbase")
|
||||
(synopsis "Base functions and classes for MS-based proteomics")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue