[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/06: gnu: python-pysam, python2-pysam: Move to bioinformatics.scm.
From: |
Ricardo Wurmus |
Subject: |
01/06: gnu: python-pysam, python2-pysam: Move to bioinformatics.scm. |
Date: |
Thu, 03 Mar 2016 12:48:57 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 55a9a8c2b91b19b6233eaee6d1a42f8b7be7235f
Author: Ricardo Wurmus <address@hidden>
Date: Thu Feb 25 14:01:14 2016 +0100
gnu: python-pysam, python2-pysam: Move to bioinformatics.scm.
* gnu/packages/python.scm (python-pysam, python2-pysam): Move to...
* gnu/packages/bioinformatics.scm (python-pysam, python2-pysam):
...here.
---
gnu/packages/bioinformatics.scm | 38 ++++++++++++++++++++++++++++++++++++++
gnu/packages/python.scm | 38 --------------------------------------
2 files changed, 38 insertions(+), 38 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5f8ce22..45ab9aa 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -838,6 +838,44 @@ well as many of the command line options.")
multiple sequence alignments.")
(license license:expat)))
+(define-public python-pysam
+ (package
+ (name "python-pysam")
+ (version "0.8.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
"https://pypi.python.org/packages/source/p/pysam/pysam-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "1fb6i6hbpzxaxb62kyyp5alaidwhj40f7c6gwbhr6njzlqd5l459"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #f ; tests are excluded in the manifest
+ #:phases
+ (alist-cons-before
+ 'build 'set-flags
+ (lambda _
+ (setenv "LDFLAGS" "-lncurses")
+ (setenv "CFLAGS" "-D_CURSES_LIB=1"))
+ %standard-phases)))
+ (inputs
+ `(("python-cython" ,python-cython)
+ ("python-setuptools" ,python-setuptools)
+ ("ncurses" ,ncurses)
+ ("zlib" ,zlib)))
+ (home-page "https://github.com/pysam-developers/pysam")
+ (synopsis "Python bindings to the SAMtools C API")
+ (description
+ "Pysam is a Python module for reading and manipulating files in the
+SAM/BAM format. Pysam is a lightweight wrapper of the SAMtools C API. It
+also includes an interface for tabix.")
+ (license license:expat)))
+
+(define-public python2-pysam
+ (package-with-python2 python-pysam))
+
(define-public clipper
(package
(name "clipper")
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4f34537..131ec62 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1040,44 +1040,6 @@ get the local timezone information, unless you know the
zoneinfo name, and
under several distributions that's hard or impossible to figure out.")
(license cc0)))
-(define-public python-pysam
- (package
- (name "python-pysam")
- (version "0.8.1")
- (source
- (origin
- (method url-fetch)
- (uri (string-append
"https://pypi.python.org/packages/source/p/pysam/pysam-"
- version ".tar.gz"))
- (sha256
- (base32
- "1fb6i6hbpzxaxb62kyyp5alaidwhj40f7c6gwbhr6njzlqd5l459"))))
- (build-system python-build-system)
- (arguments
- `(#:tests? #f ; tests are excluded in the manifest
- #:phases
- (alist-cons-before
- 'build 'set-flags
- (lambda _
- (setenv "LDFLAGS" "-lncurses")
- (setenv "CFLAGS" "-D_CURSES_LIB=1"))
- %standard-phases)))
- (inputs
- `(("python-cython" ,python-cython)
- ("python-setuptools" ,python-setuptools)
- ("ncurses" ,ncurses)
- ("zlib" ,zlib)))
- (home-page "https://github.com/pysam-developers/pysam")
- (synopsis "Python bindings to the SAMtools C API")
- (description
- "Pysam is a Python module for reading and manipulating files in the
-SAM/BAM format. Pysam is a lightweight wrapper of the SAMtools C API. It
-also includes an interface for tabix.")
- (license license:expat)))
-
-(define-public python2-pysam
- (package-with-python2 python-pysam))
-
(define-public python2-pysqlite
(package
(name "python2-pysqlite")
- branch master updated (937690f -> 649e9b3), Ricardo Wurmus, 2016/03/03
- 01/06: gnu: python-pysam, python2-pysam: Move to bioinformatics.scm.,
Ricardo Wurmus <=
- 02/06: gnu: python-pysam: Update to 0.8.4., Ricardo Wurmus, 2016/03/03
- 03/06: gnu: Add python-pybigwig., Ricardo Wurmus, 2016/03/03
- 06/06: gnu: python-pysam: Move cython and setuptools to native inputs., Ricardo Wurmus, 2016/03/03
- 04/06: gnu: deeptools: Change "propagated-inputs" to "inputs"., Ricardo Wurmus, 2016/03/03
- 05/06: gnu: deeptools: Update to 2.1.1., Ricardo Wurmus, 2016/03/03