From 413133e4309a19c4830170271ee58c6cd9f0ff62 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 28 May 2022 12:19:36 +0200 Subject: [PATCH] gnu: Add r-decoupler. * gnu/packages/bioconductor.scm (r-decoupler): New variable. --- gnu/packages/bioconductor.scm | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 0410ff8a82..4e06a3c694 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2167,6 +2167,47 @@ (define-public r-decipher biological sequences.") (license license:gpl3))) +(define-public r-decoupler + (package + (name "r-decoupler") + (version "2.2.2") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "decoupleR" version)) + (sha256 + (base32 "0q1w8yw3bwx8ai5z8rw8lz97w4cplxijq93634hza2vgkig1ck9m")))) + (properties `((upstream-name . "decoupleR"))) + (build-system r-build-system) + (propagated-inputs + (list r-broom + r-dplyr + r-magrittr + r-matrix + r-purrr + r-rlang + r-stringr + r-tibble + r-tidyr + r-tidyselect + r-withr)) + (native-inputs (list r-knitr)) + (home-page "https://saezlab.github.io/decoupleR/") + (synopsis "Computational methods to infer biological activities from omics data") + (description + "Many methods allow us to extract biological activities from omics data using +information from prior knowledge resources, reducing the dimensionality for +increased statistical power and better interpretability. decoupleR is a +Bioconductor package containing different statistical methods to extract these +signatures within a unified framework. decoupleR allows the user to flexibly +test any method with any resource. It incorporates methods that take into +account the sign and weight of network interactions. decoupleR can be used +with any omic, as long as its features can be linked to a biological process +based on prior knowledge. For example, in transcriptomics gene sets regulated +by a transcription factor, or in phospho-proteomics phosphosites that are +targeted by a kinase.") + (license license:gpl3))) + (define-public r-deepsnv (package (name "r-deepsnv")