mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: r-gchain: Add missing inputs.
* gnu/packages/bioinformatics.scm (r-gchain)[native-inputs]: Add r-pwalign and r-testthat. [arguments]: Add phase 'skip-bad-tests. Change-Id: Ia11c6e50e0d2886762ec551df3e5d73ef98547f8
This commit is contained in:
parent
d2d2b4d4cb
commit
e2561d2ec8
1 changed files with 21 additions and 0 deletions
|
@ -12133,6 +12133,26 @@ file formats, and ffTrack objects in multi-track panels.")
|
|||
"105wgi5w2fhwq1grsvj6zjigwg0sny3z7zr577q8ki3qffjwdkj0"))))
|
||||
(properties `((upstream-name . "gChain")))
|
||||
(build-system r-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'skip-bad-tests
|
||||
(lambda _
|
||||
(substitute* "tests/testthat/test_gChain.R"
|
||||
;; C stack usage 7973568 is too close to the limit
|
||||
((".*'testing lift\\(\\) works'.*" m)
|
||||
(string-append m "skip('guix')"))
|
||||
;; C stack usage 7973568 is too close to the limit
|
||||
((".*'testing \"\\*\" works'.*" m)
|
||||
(string-append m "skip('guix')"))
|
||||
;; Accuracy problem
|
||||
((".*'testing cgChain\\(\\) works'.*" m)
|
||||
(string-append m "skip('guix')"))
|
||||
;; unable to find an inherited method for function ‘strand<-’
|
||||
;; for signature ‘x = "GRangesList", value = "character"’
|
||||
((".*'testing permute\\(\\) works'.*" m)
|
||||
(string-append m "skip('guix')"))))))))
|
||||
(propagated-inputs
|
||||
(list r-bamutils
|
||||
r-biostrings
|
||||
|
@ -12143,6 +12163,7 @@ file formats, and ffTrack objects in multi-track panels.")
|
|||
r-gutils
|
||||
r-matrix
|
||||
r-rtracklayer))
|
||||
(native-inputs (list r-pwalign r-testthat))
|
||||
(home-page "https://github.com/mskilab/gChain/")
|
||||
(synopsis "Additional capabilities and speed for GenomicRanges operations")
|
||||
(description
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue