mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: r-mast: Update to 1.24.1.
* gnu/packages/bioconductor.scm (r-mast): Update to 1.24.1. [source]: Delete minified JavaScript. [arguments]: Add build phase 'process-javascript. [native-inputs]: Add esbuild and js-jquery-sticky-kit.
This commit is contained in:
parent
cacd7b6768
commit
db17611dc9
1 changed files with 24 additions and 3 deletions
|
@ -10848,16 +10848,28 @@ (define-public r-batchelor
|
||||||
(define-public r-mast
|
(define-public r-mast
|
||||||
(package
|
(package
|
||||||
(name "r-mast")
|
(name "r-mast")
|
||||||
(version "1.24.0")
|
(version "1.24.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (bioconductor-uri "MAST" version))
|
(uri (bioconductor-uri "MAST" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"133ijkw5sd0gl38dfr7qfqvvp2df7lg6j8vkvy54zlpamkg6l2x1"))))
|
"1c0lc4abnb859x481ky6d3kc9zzxwvf4kqgwxyqapc4g72b4vh65"))
|
||||||
|
(snippet
|
||||||
|
'(delete-file "docs/jquery.sticky-kit.min.js"))))
|
||||||
(properties `((upstream-name . "MAST")))
|
(properties `((upstream-name . "MAST")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'process-javascript
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(invoke "esbuild"
|
||||||
|
(assoc-ref inputs "js-jquery-sticky-kit")
|
||||||
|
"--minify"
|
||||||
|
"--outfile=docs/jquery.sticky-kit.min.js"))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list r-abind
|
(list r-abind
|
||||||
r-biobase
|
r-biobase
|
||||||
|
@ -10872,7 +10884,16 @@ (define-public r-mast
|
||||||
r-stringr
|
r-stringr
|
||||||
r-summarizedexperiment))
|
r-summarizedexperiment))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list r-knitr))
|
`(("esbuild" ,esbuild)
|
||||||
|
("js-jquery-sticky-kit"
|
||||||
|
,(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
"https://cdn.jsdelivr.net/gh/leafo/sticky-kit@v1.1.2/jquery.sticky-kit.js")
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"17c3a1hqc3ybwj7hpw8prazajp2x98aq7nyfn71h6lzjvblq297g"))))
|
||||||
|
("r-knitr" ,r-knitr)))
|
||||||
(home-page "https://github.com/RGLab/MAST/")
|
(home-page "https://github.com/RGLab/MAST/")
|
||||||
(synopsis "Model-based analysis of single cell transcriptomics")
|
(synopsis "Model-based analysis of single cell transcriptomics")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue