guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: Add r-protgear.


From: guix-commits
Subject: 01/02: gnu: Add r-protgear.
Date: Sun, 21 Jan 2024 05:10:12 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 1d00a9edffc3795bdbaf53a69edb6f98368e1ccf
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Sun Jan 21 10:34:23 2024 +0100

    gnu: Add r-protgear.
    
    * gnu/packages/bioconductor.scm (r-protgear): New variable.
    
    Change-Id: Ic6d5cae65d4f76df4488ee2462071ba68b50c184
---
 gnu/packages/bioconductor.scm | 62 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 62 insertions(+)

diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index f3419900f5..55cfc9facf 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -9980,6 +9980,68 @@ data and detection of regions with abnormal copy number 
within each parental
 chromosome.  Both tumor-normal paired and tumor-only analyses are supported.")
     (license license:gpl2+)))
 
+(define-public r-protgear
+  (package
+    (name "r-protgear")
+    (version "1.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (bioconductor-uri "protGear" version))
+       (sha256
+        (base32 "0r8md32vxjzarjldr9vsh3k0ms4zgqm9c7pp2flanbyinnqlfnxv"))))
+    (properties `((upstream-name . "protGear")))
+    (build-system r-build-system)
+    (arguments
+     (list
+      #:phases
+      '(modify-phases %standard-phases
+         ;; Needed by styler for writing to caches.
+         (add-after 'unpack 'set-HOME
+           (lambda _ (setenv "HOME" "/tmp"))))))
+    (propagated-inputs (list r-biobase
+                             r-data-table
+                             r-dplyr
+                             r-factoextra
+                             r-factominer
+                             r-flexdashboard
+                             r-genefilter
+                             r-ggally
+                             r-ggplot2
+                             r-ggpubr
+                             r-gtools
+                             r-htmltools
+                             r-kendall
+                             r-knitr
+                             r-limma
+                             r-magrittr
+                             r-mass
+                             r-pheatmap
+                             r-plotly
+                             r-plyr
+                             r-purrr
+                             r-readr
+                             r-remotes
+                             r-rlang
+                             r-rmarkdown
+                             r-shiny
+                             r-shinydashboard
+                             r-styler
+                             r-tibble
+                             r-tidyr
+                             r-vsn))
+    (native-inputs (list r-knitr))
+    (home-page "https://github.com/Keniajin/protGear";)
+    (synopsis
+     "Protein micro array data management and interactive visualization")
+    (description
+     "This package provides a generic three-step pre-processing package for
+protein microarray data.  This package contains different data pre-processing
+procedures to allow comparison of their performance.  These steps are
+background correction, the coefficient of variation (CV) based filtering,
+batch correction and normalization.")
+    (license license:gpl3)))
+
 (define-public r-protgenerics
   (package
     (name "r-protgenerics")



reply via email to

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