diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 16:18:31 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-08-16 16:18:31 +0200 |
commit | a33ee9bd51c16bac2dceb7b17e258c5f3c3c89e5 (patch) | |
tree | c013c59fa4121c8e4b9922f6fc575b6f0f59626a | |
parent | 2b4dcc477b0046e741bb0735a62370c05aaf9254 (diff) |
gnu: Add go-github-com-biogo-store-interval.
* gnu/packages/bioinformatics.scm (go-github-com-biogo-store-interval): New variable.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 5eefb2a807..8d29f8d55c 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -16454,3 +16454,30 @@ module capable of computing base-level alignments for very large sequences.") (description "The package @code{graph} implements graph manipulation functions.") (license license:bsd-3))) + +(define-public go-github-com-biogo-store-interval + (package + (name "go-github-com-biogo-store-interval") + (version "0.0.0-20201120204734-aad293a2328f") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/biogo/store") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0skizrp1j6vgbl0g1kmh73picagqlvwckaqs0gkl6rai5lckxj8a")))) + (build-system go-build-system) + (arguments + '(#:import-path "github.com/biogo/store/interval" + #:unpack-path "github.com/biogo/store")) + (propagated-inputs + (list go-gopkg-in-check-v1 + go-github-com-kr-pretty)) + (home-page "https://github.com/biogo/store") + (synopsis "Interval store type for biogo") + (description + "The @code{store} package provides a number of data store types that are +useful for bioinformatic analysis.") + (license license:bsd-3))) |