kallisto: cleanup and migrate to pkgs/by-name (#422528)
This commit is contained in:
commit
dd863c7770
@ -5,6 +5,7 @@
|
|||||||
autoconf,
|
autoconf,
|
||||||
cmake,
|
cmake,
|
||||||
hdf5,
|
hdf5,
|
||||||
|
versionCheckHook,
|
||||||
zlib,
|
zlib,
|
||||||
nix-update-script,
|
nix-update-script,
|
||||||
}:
|
}:
|
||||||
@ -32,17 +33,28 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
cmakeFlags = [ "-DUSE_HDF5=ON" ];
|
cmakeFlags = [ "-DUSE_HDF5=ON" ];
|
||||||
|
|
||||||
# Parallel build fails in some cases: https://github.com/pachterlab/kallisto/issues/160
|
|
||||||
enableParallelBuilding = false;
|
enableParallelBuilding = false;
|
||||||
|
|
||||||
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
||||||
|
versionCheckProgramArg = "version";
|
||||||
|
doInstallCheck = true;
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Program for quantifying abundances of transcripts from RNA-Seq data";
|
description = "Near-optimal quantification of transcripts from RNA-seq data";
|
||||||
|
longDescription = ''
|
||||||
|
kallisto is a program for quantifying abundances of transcripts
|
||||||
|
from RNA sequencing data, or more generally of target sequences
|
||||||
|
using high-throughput sequencing reads. It is based on the novel
|
||||||
|
idea of pseudoalignment for rapidly determining the
|
||||||
|
compatibility of reads with targets, without the need for
|
||||||
|
alignment.
|
||||||
|
'';
|
||||||
mainProgram = "kallisto";
|
mainProgram = "kallisto";
|
||||||
homepage = "https://pachterlab.github.io/kallisto";
|
homepage = "https://pachterlab.github.io/kallisto";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = with maintainers; [ arcadio ];
|
maintainers = [ maintainers.arcadio ];
|
||||||
};
|
};
|
||||||
}
|
}
|
@ -15298,10 +15298,6 @@ with pkgs;
|
|||||||
inherit (llvmPackages) openmp;
|
inherit (llvmPackages) openmp;
|
||||||
};
|
};
|
||||||
|
|
||||||
kallisto = callPackage ../applications/science/biology/kallisto {
|
|
||||||
autoconf = buildPackages.autoconf269;
|
|
||||||
};
|
|
||||||
|
|
||||||
mirtk = callPackage ../development/libraries/science/biology/mirtk { itk = itk_5_2; };
|
mirtk = callPackage ../development/libraries/science/biology/mirtk { itk = itk_5_2; };
|
||||||
|
|
||||||
nest = callPackage ../applications/science/biology/nest { };
|
nest = callPackage ../applications/science/biology/nest { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user