summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-04-09 15:10:58 +0200
committerAndreas Enge <andreas@enge.fr>2026-04-09 15:26:11 +0200
commitac21d2067aa8ecf5367ef3bd04d52a1c0f24bfce (patch)
tree8bc9ce159ae7d02226d6da30db924abed95f788b /gnu
parent630ce27bda5bce1359d72ad302823d069d133929 (diff)
gnu: Remove ciri-long.
* gnu/packages/bioinformatics.scm (ciri-long): Delete variable. Change-Id: Id1f595a162881e6765cb2fb192ba87740667bd9b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm63
1 files changed, 0 insertions, 63 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index c350c842e8..815a467129 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -5005,69 +5005,6 @@ toolkit. It also provides the @code{ccs} executable to scan for circular
consensus sequences.")
(license license:expat)))
-(define-public ciri-long
- (package
- (name "ciri-long")
- (version "1.0.2")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/bioinfo-biols/CIRI-long")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "10k88i1fcqchrrjv82rmylwvbwqfba0n51palhig9hsg71xs0dbi"))
- ;; Delete bundled binary
- (snippet '(delete-file "libs/ccs"))))
- (build-system pyproject-build-system)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- (add-after 'unpack 'relax-requirements
- (lambda _
- (substitute* "setup.py"
- (("'argparse[^']*',")
- "") ;only for python2
- (("==")
- ">=")
- ;; This package changed names.
- (("python-Levenshtein")
- "levenshtein"))))
- (add-before 'build 'build-libssw
- (lambda _
- (with-directory-excursion "libs/striped_smith_waterman"
- (invoke "make" "libssw.so"))))
- (add-before 'build 'fix-reference-to-ccs
- (lambda* (#:key inputs #:allow-other-keys)
- (substitute* "CIRI_long/pipeline.py"
- (("'ccs -i")
- (string-append "'"
- (assoc-ref inputs "circtools") "/bin/ccs"
- " -i")))
- ;; yuck!
- (substitute* "CIRI_long/main.py"
- (("os.chmod\\(lib_path.*")
- "")))))))
- (inputs (list circtools
- python-biopython
- python-bwapy
- python-levenshtein
- python-mappy
- python-numpy
- python-pandas
- python-pysam
- python-pyspoa
- python-scikit-learn
- python-scipy))
- (native-inputs (list python-cython python-pynose python-setuptools))
- (home-page "https://ciri-cookbook.readthedocs.io/")
- (synopsis "Circular RNA identification for Nanopore sequencing")
- (description "CIRI-long is a package for circular RNA identification using
-long-read sequencing data.")
- (license license:expat)))
-
(define-public python-circe
(package
(name "python-circe")