gnu: python-pyvcf: Update to 0.6.8-0.476169c.
* gnu/packages/bioinformatics.scm (python-pyvcf): Update to 0.6.8-0.476169c.
This commit is contained in:
parent
9ed635cd9a
commit
8084e3bdb3
1 changed files with 37 additions and 35 deletions
|
@ -15541,47 +15541,49 @@ for the analysis and visualization of raw nanopore signal.")
|
||||||
(license license:mpl2.0)))
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public python-pyvcf
|
(define-public python-pyvcf
|
||||||
(package
|
(let ((commit "476169cd457ba0caa6b998b301a4d91e975251d9")
|
||||||
(name "python-pyvcf")
|
(revision "0"))
|
||||||
(version "0.6.8")
|
(package
|
||||||
;; Use git, because the PyPI tarballs lack test data.
|
(name "python-pyvcf")
|
||||||
(source
|
(version (git-version "0.6.8" revision commit))
|
||||||
(origin
|
;; Use git, because the PyPI tarballs lack test data.
|
||||||
(method git-fetch)
|
(source
|
||||||
(uri (git-reference
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
(url "https://github.com/jamescasbon/PyVCF.git")
|
(url "https://github.com/jamescasbon/PyVCF.git")
|
||||||
;; Latest release is not tagged.
|
;; Latest release is not tagged.
|
||||||
(commit "bfcedb9bad1a14074ac4526ffdb610611e073810")))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0c7lsssns3zp8fh2ibllzzra003srg9vbxqzmq6654akbzdb7lrf"))))
|
"0qf9lwj7r2hjjp4bd4vc7nayrhblfm4qcqs4dbd43a6p4bj2jv5p"))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'patch-sample-script
|
(add-after 'unpack 'patch-sample-script
|
||||||
(lambda _
|
(lambda _
|
||||||
;; Add Python 3 compatibility to this sample script.
|
;; Add Python 3 compatibility to this sample script.
|
||||||
(substitute* "scripts/vcf_sample_filter.py"
|
(substitute* "scripts/vcf_sample_filter.py"
|
||||||
(("print (.*)\n" _ arg)
|
(("print (.*)\n" _ arg)
|
||||||
(string-append "print(" arg ")\n")))))
|
(string-append "print(" arg ")\n")))))
|
||||||
(add-after 'install 'remove-installed-tests
|
(add-after 'install 'remove-installed-tests
|
||||||
;; Do not install test files.
|
;; Do not install test files.
|
||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(delete-file-recursively (string-append
|
(delete-file-recursively (string-append
|
||||||
(site-packages inputs outputs)
|
(site-packages inputs outputs)
|
||||||
"/vcf/test")))))))
|
"/vcf/test")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
;; Older setuptools is needed for use_2to3.
|
;; Older setuptools is needed for use_2to3.
|
||||||
(list python-cython python-setuptools-for-tensorflow))
|
(list python-cython python-setuptools-for-tensorflow))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list python-pysam python-rpy2))
|
(list python-pysam python-rpy2))
|
||||||
(home-page "https://github.com/jamescasbon/PyVCF")
|
(home-page "https://github.com/jamescasbon/PyVCF")
|
||||||
(synopsis "Variant Call Format parser for Python")
|
(synopsis "Variant Call Format parser for Python")
|
||||||
(description "This package provides a @acronym{VCF,Variant Call Format}
|
(description "This package provides a @acronym{VCF,Variant Call Format}
|
||||||
parser for Python.")
|
parser for Python.")
|
||||||
(license license:expat)))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public nanosv
|
(define-public nanosv
|
||||||
(package
|
(package
|
||||||
|
|
Reference in a new issue