[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
06/06: gnu: Add scregseg.
From: |
guix-commits |
Subject: |
06/06: gnu: Add scregseg. |
Date: |
Tue, 31 Aug 2021 17:12:49 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 4abf2268338f34fc85a24e14a3bbcc6803fa0e82
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Aug 31 23:10:42 2021 +0200
gnu: Add scregseg.
* gnu/packages/bioinformatics.scm (scregseg): New variable.
---
gnu/packages/bioinformatics.scm | 50 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index c199883..aef9625 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14949,6 +14949,56 @@ line, interactively explore genomic data within
Jupyter environment or web
browser.")
(license license:gpl3+)))
+(define-public scregseg
+ (package
+ (name "scregseg")
+ (version "0.1.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/BIMSBbioinfo/scregseg")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1k8hllr5if6k2mm2zj391fv40sfc008cjm04l9vgfsdppb80i112"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:tests? #false ; tests require network access
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'do-not-fail-to-find-sklearn
+ (lambda _
+ ;; XXX: I have no idea why it cannot seem to find sklearn.
+ (substitute* "setup.py"
+ (("'sklearn',") "")))))))
+ (native-inputs
+ `(("python-cython" ,python-cython)))
+ (propagated-inputs
+ `(("python-scikit-learn" ,python-scikit-learn)
+ ("python-scipy" ,python-scipy)
+ ("python-numpy" ,python-numpy)
+ ("python-hmmlearn" ,python-hmmlearn)
+ ("python-pandas" ,python-pandas)
+ ("python-numba" ,python-numba)
+ ("python-anndata" ,python-anndata)
+ ("python-scanpy" ,python-scanpy)
+ ("python-pybedtools" ,python-pybedtools)
+ ("python-pysam" ,python-pysam)
+ ("python-matplotlib" ,python-matplotlib)
+ ("python-seaborn" ,python-seaborn)
+ ("python-coolbox" ,python-coolbox)))
+ (home-page "https://github.com/BIMSBbioinfo/scregseg")
+ (synopsis "Single-cell regulatory landscape segmentation")
+ (description "Scregseg (Single-Cell REGulatory landscape SEGmentation) is a
+tool that facilitates the analysis of single cell ATAC-seq data by an
+HMM-based segmentation algorithm. Scregseg uses an HMM with
+Dirichlet-Multinomial emission probabilities to segment the genome either
+according to distinct relative cross-cell accessibility profiles or (after
+collapsing the single-cell tracks to pseudo-bulk tracks) to capture distinct
+cross-cluster accessibility profiles.")
+ (license license:gpl3+)))
+
(define-public r-ascat
(package
(name "r-ascat")
- branch master updated (1734853 -> 4abf226), guix-commits, 2021/08/31
- 01/06: gnu: Remove python-pytest-mock-3., guix-commits, 2021/08/31
- 02/06: gnu: python-anyio: Avoid failing tests., guix-commits, 2021/08/31
- 04/06: gnu: python-scanpy: Propagate sinfo., guix-commits, 2021/08/31
- 06/06: gnu: Add scregseg.,
guix-commits <=
- 03/06: gnu: python-jupyter-server: Use older pytest., guix-commits, 2021/08/31
- 05/06: gnu: python-strawc: Propagate pybind11., guix-commits, 2021/08/31