me
/
guix
Archived
1
0
Fork 0

gnu: r-bionetstat: Update to 1.20.0.

* gnu/packages/bioconductor.scm (r-bionetstat): Update to 1.20.0.
[source]: Delete minified JavaScript file.
[arguments]: Add 'process-javascript phase.
[native-inputs]: Add esbuild and r-rmarkdown.
master
Ricardo Wurmus 2023-04-28 18:56:45 +02:00
parent 1d91760996
commit 46b87ee7e7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 16 additions and 3 deletions

View File

@ -20300,16 +20300,29 @@ scoring subnetwork.")
(define-public r-bionetstat
(package
(name "r-bionetstat")
(version "1.18.0")
(version "1.20.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "BioNetStat" version))
(sha256
(base32
"1h99d6gnqw5v9ha2169zfhw9cvxhyjgkf4zm8qj1i03h2cywapgv"))))
"0bvfgppsdih6s70iizd7zh3zkb0hg4s4h1728xmyjqbvkl8fsdf4"))
(snippet
'(delete-file "inst/datatables/js/jquery.dataTables.min.js"))))
(properties `((upstream-name . "BioNetStat")))
(build-system r-build-system)
(arguments
(list
#:phases
'(modify-phases %standard-phases
(add-after 'unpack 'process-javascript
(lambda _
(with-directory-excursion "inst/datatables/js/"
(invoke "esbuild"
"jquery.dataTables.js"
"--minify"
"--outfile=jquery.dataTables.min.js")))))))
(propagated-inputs
(list r-biocparallel
r-dt
@ -20330,7 +20343,7 @@ scoring subnetwork.")
r-whisker
r-yaml))
(native-inputs
(list r-knitr))
(list esbuild r-knitr r-rmarkdown))
(home-page "https://github.com/jardimViniciusC/BioNetStat")
(synopsis "Biological network analysis")
(description