diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-12-02 12:53:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-02 13:41:08 +0100 |
commit | af774e278057f3e1da210c2862c0450c3b988220 (patch) | |
tree | 2f7b118f4ae6859c927aa11ca49d08c25c67e257 | |
parent | 541abedc0a0473d494ec22b05b6900f1d2b1c45d (diff) |
gnu: homer: Install homer executable.
* gnu/packages/bioinformatics.scm (homer)[arguments]: Update 'install phase to
also install "homer" to the bin directory.
Change-Id: Ia2d23fce493f9c10cc43ac126cd83956b4b9bb05
-rw-r--r-- | gnu/packages/bioinformatics.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 7e6701f2c78..3df45060470 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -7959,6 +7959,8 @@ indexing scheme is called a @dfn{Hierarchical Graph FM index} (HGFM).") (mkdir-p (string-append #$output "/bin")) (symlink (string-append #$output "/share/homer/bin/homer2") (string-append #$output "/bin/homer2")) + (symlink (string-append #$output "/share/homer/bin/homer") + (string-append #$output "/bin/homer")) (for-each patch-shebang (find-files (string-append #$output "/share/homer/bin") "\\.pl$"))))))) |