diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-09-12 12:28:08 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-09-12 12:28:32 +0200 |
commit | 9996896dc252a02ba3b17473a685ce8957237546 (patch) | |
tree | 915904bc92766c789bf0b25f92082ca72afd05e7 /gnu/packages/bioinformatics.scm | |
parent | 30ec6f2fb5bdac917df16d1efa122fad81518a0e (diff) |
gnu: Add python-peaks2utr.
* gnu/packages/bioinformatics.scm (python-peaks2utr): New variable.
Diffstat (limited to 'gnu/packages/bioinformatics.scm')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 0df5bbfad5..e24d70e569 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -1945,6 +1945,42 @@ matplotlib Axes objects, making them easy to style and incorporate into multi-panel figures.") (license license:expat))) +(define-public python-peaks2utr + (package + (name "python-peaks2utr") + (version "1.2.0") + (source (origin + (method url-fetch) + (uri (pypi-uri "peaks2utr" version)) + (sha256 + (base32 + "1idp9cgwqxvryf4qqrc1xjsamfqn3jmr56kmjp2h1ysmckwmhw4v")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + ;; These two tests fail because file names are not URLs. + '(list "-k" "not test_annotation.py"))) + (propagated-inputs + (list python-asgiref + python-gffutils + python-importlib-resources + macs + python-numpy + python-psutil + python-pybedtools + python-pysam + python-requests + python-tqdm + python-typing-extensions + python-zipp)) + (home-page "https://github.com/haessar/peaks2utr") + (synopsis "Python CLI for annotating three prime UTR") + (description + "This package provides a robust, parallelized Python CLI for annotating +three prime UTR.") + (license license:gpl3+))) + (define-public python-pegasusio (package (name "python-pegasusio") |