guix-commits
[Top][All Lists]
Advanced

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

06/14: gnu: Add go-github-com-biogo-hts-bam.


From: guix-commits
Subject: 06/14: gnu: Add go-github-com-biogo-hts-bam.
Date: Tue, 16 Aug 2022 12:20:03 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit b986325b13619f1e9b98e3ecf042bff71852b2b3
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Aug 16 16:23:04 2022 +0200

    gnu: Add go-github-com-biogo-hts-bam.
    
    * gnu/packages/bioinformatics.scm (go-github-com-biogo-hts-bam): New 
variable.
---
 gnu/packages/bioinformatics.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index d4fc46b95b..a551fc8fd1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -16517,3 +16517,27 @@ useful for bioinformatic analysis.")
      (list go-gopkg-in-check-v1
            go-github-com-kr-pretty))
     (synopsis "Step store for biogo")))
+
+(define-public go-github-com-biogo-hts-bam
+  (package
+    (name "go-github-com-biogo-hts-bam")
+    (version "1.4.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/biogo/hts";)
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "013ga6ilc4m3hyfr3yyiva9g4vs81afhj73v2sy7r75b5zxw7lx1"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/biogo/hts/bam"
+       #:unpack-path "github.com/biogo/hts"))
+    (propagated-inputs
+     (list go-gopkg-in-check-v1))
+    (home-page "https://github.com/biogo/hts";)
+    (synopsis "HTS BAM module for biogo")
+    (description "This package provides tools for handling BAM files.")
+    (license license:bsd-3)))



reply via email to

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