diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-06-07 16:06:53 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-06-08 09:50:55 +0300 |
commit | 61bce4d143b8e1c077b6a9e10e24138ae2f73600 (patch) | |
tree | 226aed26bddbda6e3dbbed78e6bc924cb4b71c7b | |
parent | fa43419a0ffef8f6da3663a5953946762b2e6665 (diff) |
gnu: python-mappy: Move to (gnu packages bioinformatics).
* gnu/packages/python-xyz.scm (python-mappy): Move to ...
* gnu/packages/bioinformatics.scm: ... here.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 22 | ||||
-rw-r--r-- | gnu/packages/python-xyz.scm | 22 |
2 files changed, 22 insertions, 22 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index a4a66783b6..7a47943d2d 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -10935,6 +10935,28 @@ cases include: @end enumerate\n") (license license:expat))) +(define-public python-mappy + (package + (name "python-mappy") + (version "2.18") + (source (origin + (method url-fetch) + (uri (pypi-uri "mappy" version)) + (sha256 + (base32 + "1a05p7rkmxa6qhm108na8flzj2v45jab06drk59kzk1ip2sgvzqq")))) + (build-system python-build-system) + (native-inputs + `(("python-cython" ,python-cython))) + (inputs + `(("zlib" ,zlib))) + (home-page "https://github.com/lh3/minimap2") + (synopsis "Python binding for minimap2") + (description "This package provides a convenient interface to minimap2, +a fast and accurate C program to align genomic and transcribe nucleotide +sequences.") + (license license:expat))) + (define-public miniasm (package (name "miniasm") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 7b5594fee5..998c5e9fbb 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2304,28 +2304,6 @@ information created by most SVG editors. Optimization options are typically lossless but can be tweaked for more aggressive cleaning.") (license license:asl2.0))) -(define-public python-mappy - (package - (name "python-mappy") - (version "2.18") - (source (origin - (method url-fetch) - (uri (pypi-uri "mappy" version)) - (sha256 - (base32 - "1a05p7rkmxa6qhm108na8flzj2v45jab06drk59kzk1ip2sgvzqq")))) - (build-system python-build-system) - (native-inputs - `(("python-cython" ,python-cython))) - (inputs - `(("zlib" ,zlib))) - (home-page "https://github.com/lh3/minimap2") - (synopsis "Python binding for minimap2") - (description "This package provides a convenient interface to minimap2, -a fast and accurate C program to align genomic and transcribe nucleotide -sequences.") - (license license:expat))) - (define-public python-mechanize (package (name "python-mechanize") |