diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-10-27 18:14:42 +0200 |
|---|---|---|
| committer | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-10-27 18:14:42 +0200 |
| commit | b9eeb895428d8c950b00242a4cd03c3a58811fd4 (patch) | |
| tree | da0ee3e304c5a459bfa8d6c430bcd82f076c9cbe /gnu | |
| parent | 77a7a0f87faa294c564e14ebaf9e11ac6b1c1578 (diff) | |
gnu: Add python-modbedtools.
Change-Id: Ia35e2e1640e44766960b28f74786f8371878990e
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 1d518d5ac7c..0815c5bc6e7 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -8194,6 +8194,31 @@ data. EpiScanpy is the epigenomic extension of the very popular scRNA-seq analysis tool Scanpy (Genome Biology, 2018).") (license license:bsd-3))) +(define-public python-modbedtools + (package + (name "python-modbedtools") + (version "0.1.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "modbedtools" version)) + (sha256 + (base32 "0c2f8fl0mi3wcvv4fygkf6jj1d0zavhc7v9wwbqchpyb7m23cmp9")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pysam)) + (native-inputs (list python-pytest + python-setuptools + python-setuptools-scm + python-wheel)) + (arguments (list #:tests? #f)) ;No tests + (home-page "https://github.com/lidaof/modbedtools") + (synopsis + "Generate modbed track files for visualization on WashU Epigenome Browser") + (description + "modbedtools is a python command line tool to generate modbed files for +visualization on the WashU Epigenome Browser.") + (license license:expat))) + (define-public python-ete3 (package (name "python-ete3") |
