diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 16:21:23 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:42 +0200 |
commit | fc9c2feef7b9ef6c8719ec112b689e6a712a27ea (patch) | |
tree | 901130bf458eb1bfc7dba3c4138da472898c8a51 /gnu | |
parent | 49499d4a94d6564c0c871c94deeb411c6f451f17 (diff) | |
download | guix-fc9c2feef7b9ef6c8719ec112b689e6a712a27ea.tar.gz |
gnu: Add texlive-gotoh.
* gnu/packages/tex.scm (texlive-gotoh): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ee2fc95a30..255b89c479 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3829,6 +3829,26 @@ package. Its main features are: @end itemize") (license license:lppl1.3c))) +(define-public texlive-gotoh + (package + (name "texlive-gotoh") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/gotoh/" "source/latex/gotoh/" + "tex/latex/gotoh/") + (base32 + "0h08ygzlhv1mpd27yfv8slvgfwa250z7alpv99p6768jafysp3k9"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/gotoh") + (synopsis "Implementation of the Gotoh sequence alignment algorithm") + (description + "This package calculates biological sequence alignment with the Gotoh algorithm. +The package also provides an interface to control various settings including +algorithm parameters.") + (license license:expat))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |