[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/13: gnu: Add python-pyvcf.
From: |
guix-commits |
Subject: |
07/13: gnu: Add python-pyvcf. |
Date: |
Wed, 21 Jul 2021 07:52:05 -0400 (EDT) |
lbraun pushed a commit to branch master
in repository guix.
commit 2b665b8a49063803290fcacaa4a36426384f0b19
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Tue Jul 20 13:41:22 2021 +0200
gnu: Add python-pyvcf.
* gnu/packages/bioinformatics.scm (python-pyvcf): New variable.
---
gnu/packages/bioinformatics.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8aa21c4..6aaee38 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14600,3 +14600,40 @@ modified nucleotides from nanopore sequencing data.
Tombo also provides tools
for the analysis and visualization of raw nanopore signal.")
;; Some parts may be BSD-3-licensed.
(license license:mpl2.0)))
+
+(define-public python-pyvcf
+ (package
+ (name "python-pyvcf")
+ (version "0.6.8")
+ ;; Use git, because the PyPI tarballs lack test data.
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/jamescasbon/PyVCF.git")
+ ;; Latest release is not tagged.
+ (commit "bfcedb9bad1a14074ac4526ffdb610611e073810")))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0c7lsssns3zp8fh2ibllzzra003srg9vbxqzmq6654akbzdb7lrf"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'install 'remove-installed-tests
+ ;; Do not install test files.
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (delete-file-recursively (string-append
+ (site-packages inputs outputs)
+ "vcf/test"))
+ #t)))))
+ (native-inputs `(("python-cython" ,python-cython)))
+ (propagated-inputs
+ `(("python-pysam" ,python-pysam)
+ ("python-rpy2" ,python-rpy2)))
+ (home-page "https://github.com/jamescasbon/PyVCF")
+ (synopsis "Variant Call Format parser for Python")
+ (description "This package provides a @acronym{VCF,Variant Call Format}
+parser for Python.")
+ (license license:expat)))
- branch master updated (ce27cde -> 403a689), guix-commits, 2021/07/21
- 02/13: gnu: Add r-naniar., guix-commits, 2021/07/21
- 01/13: gnu: Add r-norm., guix-commits, 2021/07/21
- 04/13: gnu: Add r-rmisc., guix-commits, 2021/07/21
- 07/13: gnu: Add python-pyvcf.,
guix-commits <=
- 08/13: gnu: Add nanosv., guix-commits, 2021/07/21
- 03/13: gnu: Add r-glinternet., guix-commits, 2021/07/21
- 11/13: gnu: Add python-bash-kernel., guix-commits, 2021/07/21
- 13/13: gnu: Add python-sparqlkernel., guix-commits, 2021/07/21
- 06/13: gnu: checkm: Rename and update to 1.1.3., guix-commits, 2021/07/21
- 12/13: gnu: Add python-sparqlwrapper., guix-commits, 2021/07/21
- 10/13: gnu: Add r-battenberg., guix-commits, 2021/07/21
- 05/13: gnu: Add tombo., guix-commits, 2021/07/21
- 09/13: gnu: Add r-ascat., guix-commits, 2021/07/21