mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add r-optparse.
* gnu/packages/bioinformatics.scm (r-optparse): New variable.
This commit is contained in:
parent
2acaaee550
commit
c79ad57a8d
1 changed files with 23 additions and 0 deletions
|
@ -5910,6 +5910,29 @@ (define-public r-getopt
|
||||||
support for default values, positional argument support, etc.")
|
support for default values, positional argument support, etc.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-optparse
|
||||||
|
(package
|
||||||
|
(name "r-optparse")
|
||||||
|
(version "1.3.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "optparse" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1g8as89r91xxi5j5azsd6vrfrhg84mnfx2683j7pacdp8s33radw"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-getopt" ,r-getopt)))
|
||||||
|
(home-page
|
||||||
|
"https://github.com/trevorld/optparse")
|
||||||
|
(synopsis "Command line option parser")
|
||||||
|
(description
|
||||||
|
"This package provides a command line parser inspired by Python's
|
||||||
|
@code{optparse} library to be used with Rscript to write shebang scripts
|
||||||
|
that accept short and long options.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public r-dnacopy
|
(define-public r-dnacopy
|
||||||
(package
|
(package
|
||||||
(name "r-dnacopy")
|
(name "r-dnacopy")
|
||||||
|
|
Loading…
Reference in a new issue