Merge pull request #108249 from prusnak/bowtie

bowtie: init at at 1.3.0
This commit is contained in:
Sandro 2021-01-03 10:03:24 +01:00 committed by GitHub
commit 6ae069c990
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, zlib }:
stdenv.mkDerivation rec {
pname = "bowtie";
version = "1.3.0";
src = fetchFromGitHub {
owner = "BenLangmead";
repo = pname;
rev = "v${version}";
sha256 = "0da2kzyfsn6xv8mlqsv2vv7k8g0c9d2vgqzq8yqk888yljdzcrjp";
};
buildInputs = [ zlib ];
installFlags = [ "prefix=$(out)" ];
meta = with stdenv.lib; {
description = "An ultrafast memory-efficient short read aligner";
license = licenses.artistic2;
homepage = "http://bowtie-bio.sf.net/bowtie";
maintainers = with maintainers; [ prusnak ];
platforms = platforms.all;
};
}

View File

@ -1624,6 +1624,8 @@ in
boot = callPackage ../development/tools/build-managers/boot { };
bowtie = callPackage ../applications/science/biology/bowtie { };
bowtie2 = callPackage ../applications/science/biology/bowtie2 { };
boxfs = callPackage ../tools/filesystems/boxfs { };