mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add r-protgear.
* gnu/packages/bioconductor.scm (r-protgear): New variable. Change-Id: Ic6d5cae65d4f76df4488ee2462071ba68b50c184
This commit is contained in:
parent
0afe456973
commit
1d00a9edff
1 changed files with 62 additions and 0 deletions
|
@ -9980,6 +9980,68 @@ (define-public r-pscbs
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue