gnu: rseqc: Update to 3.0.1.
* gnu/packages/bioinformatics.scm (rseqc): Update to 3.0.1. [source]: Remove snippet. [arguments]: Remove to build with Python 3. [inputs]: Replace python2-cython, python2-pysam, and python2-numpy with python-cython, python-pysam, and python-numpy, respectively; add python-bx-python and python-pybigwig. [native-inputs]: Replace python2-nose with python-nose.master
parent
faa0fa3978
commit
d24b3b0213
|
@ -5306,7 +5306,7 @@ BAM and Wiggle files in both transcript-coordinate and genomic-coordinate.")
|
||||||
(define-public rseqc
|
(define-public rseqc
|
||||||
(package
|
(package
|
||||||
(name "rseqc")
|
(name "rseqc")
|
||||||
(version "2.6.1")
|
(version "3.0.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -5314,28 +5314,18 @@ BAM and Wiggle files in both transcript-coordinate and genomic-coordinate.")
|
||||||
(string-append "mirror://sourceforge/rseqc/"
|
(string-append "mirror://sourceforge/rseqc/"
|
||||||
"RSeQC-" version ".tar.gz"))
|
"RSeQC-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "15ly0254yi032qzkdplg00q144qfdsd986gh62829rl5bkxhj330"))
|
(base32
|
||||||
(modules '((guix build utils)))
|
"0gbb9iyb7swiv5455fm5rg98r7l6qn27v564yllqjd574hncpx6m"))))
|
||||||
(snippet
|
|
||||||
'(begin
|
|
||||||
;; remove bundled copy of pysam
|
|
||||||
(delete-file-recursively "lib/pysam")
|
|
||||||
(substitute* "setup.py"
|
|
||||||
;; remove dependency on outdated "distribute" module
|
|
||||||
(("^from distribute_setup import use_setuptools") "")
|
|
||||||
(("^use_setuptools\\(\\)") "")
|
|
||||||
;; do not use bundled copy of pysam
|
|
||||||
(("^have_pysam = False") "have_pysam = True"))
|
|
||||||
#t))))
|
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments `(#:python ,python-2))
|
|
||||||
(inputs
|
(inputs
|
||||||
`(("python-cython" ,python2-cython)
|
`(("python-cython" ,python-cython)
|
||||||
("python-pysam" ,python2-pysam)
|
("python-bx-python" ,python-bx-python)
|
||||||
("python-numpy" ,python2-numpy)
|
("python-pybigwig" ,python-pybigwig)
|
||||||
|
("python-pysam" ,python-pysam)
|
||||||
|
("python-numpy" ,python-numpy)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python-nose" ,python2-nose)))
|
`(("python-nose" ,python-nose)))
|
||||||
(home-page "http://rseqc.sourceforge.net/")
|
(home-page "http://rseqc.sourceforge.net/")
|
||||||
(synopsis "RNA-seq quality control package")
|
(synopsis "RNA-seq quality control package")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue