diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-10-20 01:09:04 -0400 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:30 +0200 |
commit | 92364dfb419dc7af510567df81d3d65e1f59fce2 (patch) | |
tree | 62c8f6b97ae5b5c7dc6666684bd0b478241ef4cb /gnu | |
parent | 0e219544f1de767f39c329fd37e9de5ab7fe46ab (diff) | |
download | guix-92364dfb419dc7af510567df81d3d65e1f59fce2.tar.gz guix-92364dfb419dc7af510567df81d3d65e1f59fce2.zip |
gnu: filtlong: Add bash-minimal to inputs.
* gnu/packages/bioinformatics.scm (filtlong)
[inputs]: Add bash-minimal.
Change-Id: I8a4b402d66a06a27c9cc8abacdefecd251c2095c
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 3a634486ce..2e80411002 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -19319,7 +19319,8 @@ phase + query phase).") (substitute* "scripts/read_info_histograms.sh" (("awk") (which "gawk")))))))) (inputs - (list gawk ;for read_info_histograms.sh + (list bash-minimal + gawk ;for read_info_histograms.sh python-wrapper ;required for histogram.py zlib)) (home-page "https://github.com/rrwick/Filtlong/") |