mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: r-getopt: Move from bioinformatics to cran.
* gnu/packages/bioinformatics.scm (r-getopt): Move from here... * gnu/packages/cran.scm (r-getopt): ...to here.
This commit is contained in:
parent
87ba9508e9
commit
aec7d6be70
2 changed files with 22 additions and 22 deletions
|
@ -7058,28 +7058,6 @@ (define-public r-bioccheck
|
||||||
checks on R packages that are to be submitted to the Bioconductor repository.")
|
checks on R packages that are to be submitted to the Bioconductor repository.")
|
||||||
(license license:artistic2.0)))
|
(license license:artistic2.0)))
|
||||||
|
|
||||||
(define-public r-getopt
|
|
||||||
(package
|
|
||||||
(name "r-getopt")
|
|
||||||
(version "1.20.2")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (cran-uri "getopt" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"13p35lbpy7i578752fa71sbfvcsqw5qfa9p6kf8b5m3c5p9i4v1x"))))
|
|
||||||
(build-system r-build-system)
|
|
||||||
(home-page "https://github.com/trevorld/getopt")
|
|
||||||
(synopsis "Command-line option processor for R")
|
|
||||||
(description
|
|
||||||
"This package is designed to be used with Rscript to write shebang
|
|
||||||
scripts that accept short and long options. Many users will prefer to
|
|
||||||
use the packages @code{optparse} or @code{argparse} which add extra
|
|
||||||
features like automatically generated help options and usage texts,
|
|
||||||
support for default values, positional argument support, etc.")
|
|
||||||
(license license:gpl2+)))
|
|
||||||
|
|
||||||
(define-public r-optparse
|
(define-public r-optparse
|
||||||
(package
|
(package
|
||||||
(name "r-optparse")
|
(name "r-optparse")
|
||||||
|
|
|
@ -4578,3 +4578,25 @@ (define-public r-goplot
|
||||||
molecules in a given set of categories (circle plot, chord plot, cluster plot,
|
molecules in a given set of categories (circle plot, chord plot, cluster plot,
|
||||||
Venn diagram, heatmap).")
|
Venn diagram, heatmap).")
|
||||||
(license license:gpl2)))
|
(license license:gpl2)))
|
||||||
|
|
||||||
|
(define-public r-getopt
|
||||||
|
(package
|
||||||
|
(name "r-getopt")
|
||||||
|
(version "1.20.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "getopt" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"13p35lbpy7i578752fa71sbfvcsqw5qfa9p6kf8b5m3c5p9i4v1x"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(home-page "https://github.com/trevorld/getopt")
|
||||||
|
(synopsis "Command-line option processor for R")
|
||||||
|
(description
|
||||||
|
"This package is designed to be used with Rscript to write shebang
|
||||||
|
scripts that accept short and long options. Many users will prefer to
|
||||||
|
use the packages @code{optparse} or @code{argparse} which add extra
|
||||||
|
features like automatically generated help options and usage texts,
|
||||||
|
support for default values, positional argument support, etc.")
|
||||||
|
(license license:gpl2+)))
|
||||||
|
|
Loading…
Reference in a new issue