guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/05: gnu: Add python-readpaf.


From: guix-commits
Subject: 01/05: gnu: Add python-readpaf.
Date: Mon, 5 Jun 2023 11:11:51 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 91e75bb35fd545dc3dc5275428ca4cc17123c76c
Author: Navid Afkhami <navid.afkhami@mdc-berlin.de>
AuthorDate: Mon Jun 5 17:05:22 2023 +0200

    gnu: Add python-readpaf.
    
    * gnu/packages/bioinformatics.scm (python-readpaf): New variable.
---
 gnu/packages/bioinformatics.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 0b67d8fbe6..251e46061f 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1998,6 +1998,25 @@ alignments and perform the following operations:
 ")
     (license license:expat)))
 
+(define-public python-readpaf
+  (package
+    (name "python-readpaf")
+    (version "0.0.10")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "readpaf" version))
+              (sha256
+               (base32
+                "15m6ffks4zwpp1ycwk6n02py6mw2yh7qr0vhpc178b91gldr97ia"))))
+    (build-system pyproject-build-system)
+    (propagated-inputs (list python-pandas))
+    (home-page "https://github.com/alexomics/read-paf";)
+    (synopsis "Minimap2 PAF file reader")
+    (description
+     "This is a fast parser for minimap2 PAF (Pairwise mApping Format)
+files.")
+    (license license:expat)))
+
 (define-public bioperl-minimal
   (package
     (name "bioperl-minimal")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]