[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-pyliftover.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-pyliftover. |
Date: |
Wed, 28 Apr 2021 04:52:26 -0400 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5ea5ea6 gnu: Add python-pyliftover.
5ea5ea6 is described below
commit 5ea5ea60669a398c5c7eaf4cc23f1ec315eb3a3d
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Apr 28 10:49:03 2021 +0200
gnu: Add python-pyliftover.
* gnu/packages/bioinformatics.scm (python-pyliftover): New variable.
---
gnu/packages/bioinformatics.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b6e7249..97f3f91 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -15238,6 +15238,31 @@ database. That database maps k-mers to the lowest
common ancestor (LCA) of all
genomes known to contain a given k-mer.")
(license license:expat)))
+(define-public python-pyliftover
+ (package
+ (name "python-pyliftover")
+ (version "0.4")
+ ;; The version of pypi does not include test data.
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/konstantint/pyliftover")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1j8jp9iynv2l3jv5pr0pn0p3azlama1bqg233piglzm6bqh3m2m3"))))
+ (build-system python-build-system)
+ (arguments `(#:tests? #false)) ; the tests access the web
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (home-page "https://github.com/konstantint/pyliftover")
+ (synopsis "Python implementation of UCSC liftOver genome coordinate
conversion")
+ (description
+ "PyLiftover is a library for quick and easy conversion of genomic (point)
+coordinates between different assemblies.")
+ (license license:expat)))
+
(define-public r-signac
(let ((commit "e0512d348adeda4a3f23a2e8f56d1fe09840e03c")
(revision "1"))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-pyliftover.,
guix-commits <=