me
/
guix
Archived
1
0
Fork 0

gnu: Add r-biocthis.

* gnu/packages/bioconductor.scm (r-biocthis): New variable.
master
Ricardo Wurmus 2021-09-07 12:08:17 +02:00
parent fd5372e40f
commit 7ca0a0f0e7
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 29 additions and 0 deletions

View File

@ -14014,6 +14014,35 @@ Functions are also provided to enable smooth interoperability of multiple
Python environments in a single R session.")
(license license:gpl3)))
(define-public r-biocthis
(package
(name "r-biocthis")
(version "1.2.0")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "biocthis" version))
(sha256
(base32
"08awghsg7q22csb0j9dr8dpb1vkn9gcs9qnhhljxifkw2ahbqia4"))))
(properties `((upstream-name . "biocthis")))
(build-system r-build-system)
(propagated-inputs
`(("r-biocmanager" ,r-biocmanager)
("r-fs" ,r-fs)
("r-glue" ,r-glue)
("r-rlang" ,r-rlang)
("r-styler" ,r-styler)
("r-usethis" ,r-usethis)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "https://github.com/lcolladotor/biocthis")
(synopsis "Automate package and project setup for Bioconductor packages")
(description
"This package expands the @code{usethis} package with the goal of helping
automate the process of creating R packages for Bioconductor or making them
Bioconductor-friendly.")
(license license:artistic2.0)))
(define-public r-tximeta
(package
(name "r-tximeta")