diff options
author | Ricardo Wurmus <[email protected]> | 2025-02-07 10:24:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <[email protected]> | 2025-02-07 10:28:43 +0100 |
commit | abfd703c4e0ac84659736f53bf1bc4bc54e61a30 (patch) | |
tree | e0750529bd4861257b06d5ef1b04c4d99b769b58 /gnu/packages/bioinformatics.scm | |
parent | 2a4bba2249a71e928bd612d47b6ef439dc498c9c (diff) |
gnu: Add r-music.
* gnu/packages/bioinformatics.scm (r-music): New variable.
Change-Id: I3cf73fcb58f9a407d2795a4525038ab00d1b523f
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b64baaf463..4670728c9a 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -13276,6 +13276,38 @@ The generated output can be graphically summarized using the built-in plotting function.") (license license:gpl2)))) +(define-public r-music + (let ((commit "f21fe67f5670d5e9fca0ad7550abaae3423eb59c") + (revision "2")) + (package + (name "r-music") + (version (git-version "1.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/xuranw/MuSiC") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05q72sml35sw3rd0lyg7r9r3470q47x5dsjn4bpgzl99s5d76llx")))) + (properties `((upstream-name . "MuSiC"))) + (build-system r-build-system) + (propagated-inputs (list r-biobase + r-ggplot2 + r-matrix + r-mcmcpack + r-nnls + r-singlecellexperiment + r-toast)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/xuranw/MuSiC") + (synopsis "Multi-subject single cell deconvolution") + (description + "MuSiC is a deconvolution method that utilizes cross-subject scRNA-seq +to estimate cell type proportions in bulk RNA-seq data.") + (license license:gpl3+)))) + (define-public r-sleuth (package (name "r-sleuth") |