mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: r-hdf5array: Move to (gnu packages bioconductor).
* gnu/packages/bioinformatics.scm (r-hdf5array): Move from here... * gnu/packages/bioconductor.scm (r-hdf5array): ...to here. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
c61268c1b7
commit
63b75c01c2
2 changed files with 30 additions and 30 deletions
|
@ -8348,6 +8348,36 @@ (define-public r-rgraphviz
|
|||
objects from the @code{graph} package.")
|
||||
(license license:epl1.0)))
|
||||
|
||||
(define-public r-hdf5array
|
||||
(package
|
||||
(name "r-hdf5array")
|
||||
(version "1.16.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "HDF5Array" version))
|
||||
(sha256
|
||||
(base32
|
||||
"01767v90nl0499jcicpxngbbs0af5p9c5aasi5va01w3v5bnqddn"))))
|
||||
(properties `((upstream-name . "HDF5Array")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
(propagated-inputs
|
||||
`(("r-biocgenerics" ,r-biocgenerics)
|
||||
("r-delayedarray" ,r-delayedarray)
|
||||
("r-iranges" ,r-iranges)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-rhdf5" ,r-rhdf5)
|
||||
("r-rhdf5lib" ,r-rhdf5lib)
|
||||
("r-s4vectors" ,r-s4vectors)))
|
||||
(home-page "https://bioconductor.org/packages/HDF5Array")
|
||||
(synopsis "HDF5 back end for DelayedArray objects")
|
||||
(description "This package provides an array-like container for convenient
|
||||
access and manipulation of HDF5 datasets. It supports delayed operations and
|
||||
block processing.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-rhdf5lib
|
||||
(package
|
||||
(name "r-rhdf5lib")
|
||||
|
|
|
@ -10654,36 +10654,6 @@ (define-public r-hitc
|
|||
provided.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-hdf5array
|
||||
(package
|
||||
(name "r-hdf5array")
|
||||
(version "1.16.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "HDF5Array" version))
|
||||
(sha256
|
||||
(base32
|
||||
"01767v90nl0499jcicpxngbbs0af5p9c5aasi5va01w3v5bnqddn"))))
|
||||
(properties `((upstream-name . "HDF5Array")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
(propagated-inputs
|
||||
`(("r-biocgenerics" ,r-biocgenerics)
|
||||
("r-delayedarray" ,r-delayedarray)
|
||||
("r-iranges" ,r-iranges)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-rhdf5" ,r-rhdf5)
|
||||
("r-rhdf5lib" ,r-rhdf5lib)
|
||||
("r-s4vectors" ,r-s4vectors)))
|
||||
(home-page "https://bioconductor.org/packages/HDF5Array")
|
||||
(synopsis "HDF5 back end for DelayedArray objects")
|
||||
(description "This package provides an array-like container for convenient
|
||||
access and manipulation of HDF5 datasets. It supports delayed operations and
|
||||
block processing.")
|
||||
(license license:artistic2.0)))
|
||||
|
||||
(define-public r-dropbead
|
||||
(let ((commit "d746c6f3b32110428ea56d6a0001ce52a251c247")
|
||||
(revision "2"))
|
||||
|
|
Loading…
Reference in a new issue