gnu: Add cd-hit-auxtools.
* gnu/packages/bioinformatics.scm (cd-hit-auxtools): New variable.
This commit is contained in:
parent
3f627bf56b
commit
be1d561f1a
1 changed files with 20 additions and 0 deletions
|
@ -2476,6 +2476,26 @@ (define-public cd-hit
|
|||
;; version 2 (GPLv2)."
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public cd-hit-auxtools
|
||||
(package
|
||||
(inherit cd-hit)
|
||||
(name "cd-hit-auxtools")
|
||||
(arguments
|
||||
(list
|
||||
#:tests? #f ; there are no tests
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir (lambda _ (chdir "cd-hit-auxtools")))
|
||||
;; No "configure" script
|
||||
(delete 'configure)
|
||||
;; There is no install target.
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(for-each (lambda (file)
|
||||
(install-file file (string-append #$output "/bin")))
|
||||
'("cd-hit-dup" "cd-hit-lap" "read-linker")))))))
|
||||
(inputs '())))
|
||||
|
||||
(define-public clipper
|
||||
(package
|
||||
(name "clipper")
|
||||
|
|
Loading…
Reference in a new issue