mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-20 06:37:08 +01:00
gnu: python-ont-fast5-api: Update to 4.0.0.
* gnu/packages/bioinformatics.scm (python-ont-fast5-api): Update to 4.0.0. [source]: Remove bundled plugin binaries. [arguments]: Install plugin from inputs. [inputs]: Add vbz-compression. [propagated-inputs]: Remove python-six; add python-packaging.
This commit is contained in:
parent
d0aa14a43d
commit
b8d6e77476
1 changed files with 18 additions and 3 deletions
|
@ -13896,7 +13896,7 @@ (define-public vbz-compression
|
||||||
(define-public python-ont-fast5-api
|
(define-public python-ont-fast5-api
|
||||||
(package
|
(package
|
||||||
(name "python-ont-fast5-api")
|
(name "python-ont-fast5-api")
|
||||||
(version "1.4.4")
|
(version "4.0.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -13906,12 +13906,27 @@ (define-public python-ont-fast5-api
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"03cbq4zbbwhll8ml2m9k8sa31mirsvcbjkrq1yna0kkzz9fad5fm"))))
|
"01hj4751j424lzic2sc4bz1f8w7i7fpkjpy3rgghdyl5lyfyb4s4"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(delete-file-recursively "ont_fast5_api/vbz_plugin"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'copy-plugin
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
(mkdir-p "ont_fast5_api/vbz_plugin/")
|
||||||
|
(install-file (string-append
|
||||||
|
(assoc-ref inputs "vbz-compression")
|
||||||
|
"/hdf5/lib/plugin/libvbz_hdf_plugin.so")
|
||||||
|
"ont_fast5_api/vbz_plugin/"))))))
|
||||||
|
(inputs
|
||||||
|
`(("vbz-compression" ,vbz-compression)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-numpy" ,python-numpy)
|
`(("python-numpy" ,python-numpy)
|
||||||
("python-six" ,python-six)
|
|
||||||
("python-h5py" ,python-h5py)
|
("python-h5py" ,python-h5py)
|
||||||
|
("python-packaging" ,python-packaging)
|
||||||
("python-progressbar33" ,python-progressbar33)))
|
("python-progressbar33" ,python-progressbar33)))
|
||||||
(home-page "https://github.com/nanoporetech/ont_fast5_api")
|
(home-page "https://github.com/nanoporetech/ont_fast5_api")
|
||||||
(synopsis "Interface to HDF5 files of the Oxford Nanopore fast5 file format")
|
(synopsis "Interface to HDF5 files of the Oxford Nanopore fast5 file format")
|
||||||
|
|
Loading…
Reference in a new issue