guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: Add r-linnorm.


From: guix-commits
Subject: 01/01: gnu: Add r-linnorm.
Date: Wed, 13 Mar 2019 12:14:18 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 4291f36a22081e25fad1346178d14f3a3c9df1c2
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Mar 13 17:13:21 2019 +0100

    gnu: Add r-linnorm.
    
    * gnu/packages/bioconductor.scm (r-linnorm): New variable.
---
 gnu/packages/bioconductor.scm | 59 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 45711ab..251ad1e 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -2424,3 +2424,62 @@ variance stabilization, normalization and gene 
annotation at the probe level.
 It also includes the functions of processing Illumina methylation microarrays,
 especially Illumina Infinium methylation microarrays.")
     (license license:lgpl2.0+)))
+
+(define-public r-linnorm
+  (package
+    (name "r-linnorm")
+    (version "2.6.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "Linnorm" version))
+       (sha256
+        (base32
+         "1qgk8m5kc409flqxs3vnf228v3z0112q8py9hgfgyiwvi6yzdbp6"))))
+    (properties `((upstream-name . "Linnorm")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-amap" ,r-amap)
+       ("r-apcluster" ,r-apcluster)
+       ("r-ellipse" ,r-ellipse)
+       ("r-fastcluster" ,r-fastcluster)
+       ("r-fpc" ,r-fpc)
+       ("r-ggdendro" ,r-ggdendro)
+       ("r-ggplot2" ,r-ggplot2)
+       ("r-gmodels" ,r-gmodels)
+       ("r-igraph" ,r-igraph)
+       ("r-limma" ,r-limma)
+       ("r-mass" ,r-mass)
+       ("r-mclust" ,r-mclust)
+       ("r-rcpp" ,r-rcpp)
+       ("r-rcpparmadillo" ,r-rcpparmadillo)
+       ("r-rtsne" ,r-rtsne)
+       ("r-statmod" ,r-statmod)
+       ("r-vegan" ,r-vegan)
+       ("r-zoo" ,r-zoo)))
+    (home-page "http://www.jjwanglab.org/Linnorm/";)
+    (synopsis "Linear model and normality based transformation method")
+    (description
+     "Linnorm is an R package for the analysis of RNA-seq, scRNA-seq, ChIP-seq
+count data or any large scale count data.  It transforms such datasets for
+parametric tests.  In addition to the transformtion function (@code{Linnorm}),
+the following pipelines are implemented:
+
address@hidden
address@hidden Library size/batch effect normalization (@code{Linnorm.Norm})
address@hidden Cell subpopluation analysis and visualization using t-SNE or PCA 
K-means
+  clustering or hierarchical clustering (@code{Linnorm.tSNE},
+  @code{Linnorm.PCA}, @code{Linnorm.HClust})
address@hidden Differential expression analysis or differential peak detection 
using
+  limma (@code{Linnorm.limma})
address@hidden Highly variable gene discovery and visualization 
(@code{Linnorm.HVar})
address@hidden Gene correlation network analysis and visualization 
(@code{Linnorm.Cor})
address@hidden Stable gene selection for scRNA-seq data; for users without or 
who do
+  not want to rely on spike-in genes (@code{Linnorm.SGenes})
address@hidden Data imputation (@code{Linnorm.DataImput}).
address@hidden enumerate
+
+Linnorm can work with raw count, CPM, RPKM, FPKM and TPM.  Additionally, the
address@hidden function is included for simulating RNA-seq data for the
+evaluation of DEG analysis methods.")
+    (license license:expat)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]