summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/bioinformatics.scm26
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 03eb2dfe30d..1f3421126cc 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -27,6 +27,7 @@
27 #:use-module (guix build-system cmake) 27 #:use-module (guix build-system cmake)
28 #:use-module (guix build-system perl) 28 #:use-module (guix build-system perl)
29 #:use-module (guix build-system python) 29 #:use-module (guix build-system python)
30 #:use-module (guix build-system ruby)
30 #:use-module (guix build-system trivial) 31 #:use-module (guix build-system trivial)
31 #:use-module (gnu packages) 32 #:use-module (gnu packages)
32 #:use-module (gnu packages algebra) 33 #:use-module (gnu packages algebra)
@@ -45,6 +46,7 @@
45 #:use-module (gnu packages popt) 46 #:use-module (gnu packages popt)
46 #:use-module (gnu packages protobuf) 47 #:use-module (gnu packages protobuf)
47 #:use-module (gnu packages python) 48 #:use-module (gnu packages python)
49 #:use-module (gnu packages ruby)
48 #:use-module (gnu packages statistics) 50 #:use-module (gnu packages statistics)
49 #:use-module (gnu packages tbb) 51 #:use-module (gnu packages tbb)
50 #:use-module (gnu packages textutils) 52 #:use-module (gnu packages textutils)
@@ -2616,3 +2618,27 @@ data in the form of VCF files.")
2616 ;; The license is declared as LGPLv3 in the README and 2618 ;; The license is declared as LGPLv3 in the README and
2617 ;; at http://vcftools.sourceforge.net/license.html 2619 ;; at http://vcftools.sourceforge.net/license.html
2618 (license license:lgpl3))) 2620 (license license:lgpl3)))
2621
2622(define-public bio-locus
2623 (package
2624 (name "bio-locus")
2625 (version "0.0.7")
2626 (source
2627 (origin
2628 (method url-fetch)
2629 (uri (rubygems-uri "bio-locus" version))
2630 (sha256
2631 (base32
2632 "02vmrxyimkj9sahsp4zhfhnmbvz6dbbqz1y01vglf8cbwvkajfl0"))))
2633 (build-system ruby-build-system)
2634 (native-inputs
2635 `(("ruby-rspec" ,ruby-rspec)))
2636 (synopsis "Tool for fast querying of genome locations")
2637 (description
2638 "Bio-locus is a tabix-like tool for fast querying of genome
2639locations. Many file formats in bioinformatics contain records that
2640start with a chromosome name and a position for a SNP, or a start-end
2641position for indels. Bio-locus allows users to store this chr+pos or
2642chr+pos+alt information in a database.")
2643 (home-page "https://github.com/pjotrp/bio-locus")
2644 (license license:expat)))