diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-03-31 14:14:48 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-03-31 14:32:43 +0300 |
commit | 977ea2c0a35da76a034f1a14f7af26b937d795fb (patch) | |
tree | be1e1400c0232e366b1e1344cea4771465a31004 | |
parent | 58e9e0e1428e362777ccbb317df2d051ff76ce5b (diff) | |
download | guix-977ea2c0a35da76a034f1a14f7af26b937d795fb.tar guix-977ea2c0a35da76a034f1a14f7af26b937d795fb.tar.gz |
gnu: plink-ng: Sort inputs alphabetically.
* gnu/packages/bioinformatics.scm (plink-ng)[inputs]: Sort
alphabetically.
-rw-r--r-- | gnu/packages/bioinformatics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 49ae8b155f..5af8d0b412 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -6318,9 +6318,9 @@ subsequent visualization, annotation and storage of results.") (install-file "plink" bin) #t)))))) (inputs - `(("zlib" ,zlib) - ("lapack" ,lapack) - ("openblas" ,openblas))) + `(("lapack" ,lapack) + ("openblas" ,openblas) + ("zlib" ,zlib))) (home-page "https://www.cog-genomics.org/plink/") (license license:gpl3+))) |