mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Merge pull request #34199 from arcadio/kallisto
kallisto: init at 0.43.1
This commit is contained in:
commit
efdb0983da
@ -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>";
|
||||
|
25
pkgs/applications/science/biology/kallisto/default.nix
Normal file
25
pkgs/applications/science/biology/kallisto/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -18945,6 +18945,8 @@ with pkgs;
|
||||
neuron-version = neuron.version;
|
||||
};
|
||||
|
||||
kallisto = callPackage ../applications/science/biology/kallisto { };
|
||||
|
||||
neuron = callPackage ../applications/science/biology/neuron {
|
||||
python = null;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user