~ruther/guix-local

8ed9ffedd4b7a01fe1ecb73e75931d2ccfcd4923 — Ricardo Wurmus 2 years ago ebd00a4
gnu: Add r-sleuth.

* gnu/packages/bioinformatics.scm (r-sleuth): New variable.

Change-Id: Ic358945548631fd3ac5de96b2efcf1fd93005898
1 files changed, 37 insertions(+), 0 deletions(-)

M gnu/packages/bioinformatics.scm
M gnu/packages/bioinformatics.scm => gnu/packages/bioinformatics.scm +37 -0
@@ 10634,6 10634,43 @@ analysis of cell types, subtypes, transcriptional gradients,cell-cycle
variation, gene modules and their regulatory models and more.")
      (license license:expat))))

(define-public r-sleuth
  (package
    (name "r-sleuth")
    (version "0.30.1")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/pachterlab/sleuth")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "09xgc7r6iisjkk0c0wn0q56zy0aph386kphwixfzq4422y7vlqci"))))
    (properties `((upstream-name . "sleuth")))
    (build-system r-build-system)
    (propagated-inputs (list r-aggregation
                             r-data-table
                             r-dplyr
                             r-ggplot2
                             r-lazyeval
                             r-matrixstats
                             r-pheatmap
                             r-reshape2
                             r-rhdf5
                             r-shiny
                             r-tidyr))
    (native-inputs (list r-knitr))
    (home-page "https://github.com/pachterlab/sleuth")
    (synopsis "Tools for investigating RNA-Seq")
    (description
     "Sleuth is a program for differential analysis of RNA-Seq data.
It makes use of quantification uncertainty estimates obtained via Kallisto for
accurate differential analysis of isoforms or genes, allows testing in the
context of experiments with complex designs, and supports interactive
exploratory data analysis via sleuth live.")
    (license license:gpl3)))

(define-public r-snapatac
  (package
    (name "r-snapatac")