kallisto: init at 0.43.1

This commit is contained in:
Arcadio Rubio García 2018-01-23 13:01:13 +00:00
parent 1d47908879
commit a7333e9ced
3 changed files with 28 additions and 0 deletions

View file

@ -55,6 +55,7 @@
antonxy = "Anton Schirg <anton.schirg@posteo.de>";
apeschar = "Albert Peschar <albert@peschar.net>";
apeyroux = "Alexandre Peyroux <alex@px.io>";
arcadio = "Arcadio Rubio García <arc@well.ox.ac.uk>";
ardumont = "Antoine R. Dumont <eniotna.t@gmail.com>";
aristid = "Aristid Breitkreuz <aristidb@gmail.com>";
arobyn = "Alexei Robyn <shados@shados.net>";

View file

@ -0,0 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, hdf5, zlib }:
stdenv.mkDerivation rec {
name = "kallisto-${version}";
version = "0.43.1";
src = fetchFromGitHub {
repo = "kallisto";
owner = "pachterlab";
rev = "v${version}";
sha256 = "04697pf7jvy7vw126s1rn09q4iab9223jvb1nb0jn7ilwkq7pgwz";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ hdf5 zlib ];
meta = with stdenv.lib; {
description = "kallisto is a program for quantifying abundances of transcripts from RNA-Seq data";
homepage = https://pachterlab.github.io/kallisto;
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = [ maintainers.arcadio ];
};
}

View file

@ -18932,6 +18932,8 @@ with pkgs;
neuron-version = neuron.version;
};
kallisto = callPackage ../applications/science/biology/kallisto { };
neuron = callPackage ../applications/science/biology/neuron {
python = null;
};