bowtie: init at at 1.3.0

This commit is contained in:
Pavol Rusnak 2021-01-02 19:46:13 +01:00
parent b97d7ee879
commit 03b99f0721
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

@ -1616,6 +1616,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 { };