From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH]: gnu: Add HISAT. Date: Tue, 10 Feb 2015 00:03:30 +0100 Message-ID: <87fvae8z7h.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47212) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKxRi-0000lS-VO for guix-devel@gnu.org; Mon, 09 Feb 2015 18:08:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YKxRe-0005yg-Vx for guix-devel@gnu.org; Mon, 09 Feb 2015 18:08:50 -0500 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:37182) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YKxMb-0004YO-9p for guix-devel@gnu.org; Mon, 09 Feb 2015 18:03:33 -0500 In-Reply-To: (Ricardo Wurmus's message of "Mon, 9 Feb 2015 12:16:19 +0100") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Ricardo Wurmus Cc: Guix-devel Ricardo Wurmus skribis: > From 305768bfef9bf4bc8d57828e27b8439dedd574bd Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Mon, 9 Feb 2015 12:13:26 +0100 > Subject: [PATCH] gnu: Add HISAT. > > * gnu/packages/bioinformatics.scm (hisat): New variable. Overall looks good to me. A couple of comments: > + (alist-replace > + 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((bin (string-append (assoc-ref outputs "out") "/bin/")= )) > + (mkdir-p bin) > + (for-each (lambda (file) > + (copy-file file (string-append bin file))) > + '("hisat" > + "hisat-build" > + "hisat-build-s" > + "hisat-build-l" > + "hisat-align-s" > + "hisat-align-l" > + "hisat-inspect" > + "hisat-inspect-s" > + "hisat-inspect-l" > + "hisat-build-s-debug" > + "hisat-build-l-debug" > + "hisat-align-s-debug" > + "hisat-align-l-debug" > + "hisat-inspect-s-debug" > + "hisat-inspect-l-debug")))) If it=E2=80=99s possible to avoid the whole list using =E2=80=98find-files= =E2=80=99 or =E2=80=98scandir=E2=80=99, that would be nicer IMO. If it=E2=80=99s not, t= hat=E2=80=99s fine. > + (license license:gpl3))) GPLv3-only? Thanks! Ludo=E2=80=99.