summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpimi <madalinionel.patrascu@mdc-berlin.de>2018-09-11 16:54:32 +0200
committerLudovic Courtès <ludo@gnu.org>2018-09-21 17:04:37 +0200
commit7e27393f82ff5e7237f870ded09652b89e457faa (patch)
tree75094685cdb252aed4a4d049f34d5ba8f582fe02
parent45201bf245856954cb8368c328e54773a0a81156 (diff)
gnu: Add r-pore.
* gnu/packages/bioinformatics.scm (r-pore): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r--gnu/packages/bioinformatics.scm29
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 10330cd8b23..9599e3096f1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -13736,3 +13736,32 @@ juicer) and single-resolution or multi-resolution @code{.cool} files (for
13736cooler). Both @code{hic} and @code{cool} files describe Hi-C contact 13736cooler). Both @code{hic} and @code{cool} files describe Hi-C contact
13737matrices.") 13737matrices.")
13738 (license license:expat))) 13738 (license license:expat)))
13739
13740(define-public r-pore
13741 (package
13742 (name "r-pore")
13743 (version "0.24")
13744 (source
13745 (origin
13746 (method url-fetch)
13747 (uri
13748 (string-append "mirror://sourceforge/rpore/" version
13749 "/poRe_" version ".tar.gz"))
13750 (sha256
13751 (base32 "0pih9nljbv8g4x8rkk29i7aqq681b782r5s5ynp4nw9yzqnmmksv"))))
13752 (properties `((upstream-name . "poRe")))
13753 (build-system r-build-system)
13754 (propagated-inputs
13755 `(("r-bit64" ,r-bit64)
13756 ("r-data-table" ,r-data-table)
13757 ("r-rhdf5" ,r-rhdf5)
13758 ("r-shiny" ,r-shiny)
13759 ("r-svdialogs" ,r-svdialogs)))
13760 (home-page "https://sourceforge.net/projects/rpore/")
13761 (synopsis "Visualize Nanopore sequencing data")
13762 (description
13763 "This package provides graphical user interfaces to organize and visualize Nanopore
13764sequencing data.")
13765 ;; This is free software but the license variant is unclear:
13766 ;; <https://github.com/mw55309/poRe_docs/issues/10>.
13767 (license license:bsd-3)))