mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add go-github-com-biogo-biogo.
* gnu/packages/bioinformatics.scm (go-github-com-biogo-biogo): New variable.
This commit is contained in:
parent
2407416d0f
commit
8aab1f7c73
1 changed files with 30 additions and 0 deletions
|
@ -16618,3 +16618,33 @@ (define-public go-github-com-biogo-hts-fai
|
|||
(synopsis "Fasta sequence file index handling for biogo")
|
||||
(description "This package implements FAI fasta sequence file index
|
||||
handling.")))
|
||||
|
||||
(define-public go-github-com-biogo-biogo
|
||||
(package
|
||||
(name "go-github-com-biogo-biogo")
|
||||
(version "1.0.4")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/biogo/biogo")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ali1mqf3dc26myv6l7wmqfr8i25461rbq3qdad8s0wi29622199"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/biogo/biogo"))
|
||||
(propagated-inputs
|
||||
(list go-gopkg-in-check-v1
|
||||
go-github-com-biogo-store-interval
|
||||
go-github-com-biogo-store-kdtree
|
||||
go-github-com-biogo-store-llrb
|
||||
go-github-com-biogo-store-step
|
||||
go-github-com-biogo-hts-bam
|
||||
go-github-com-biogo-graph))
|
||||
(home-page "https://github.com/biogo/biogo")
|
||||
(synopsis "Bioinformatics library for Go")
|
||||
(description
|
||||
"Bíogo is a bioinformatics library for the Go language.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue