Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
zlib,
|
|
testers,
|
|
bustools,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "bustools";
|
|
version = "0.45.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BUStools";
|
|
repo = "bustools";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-G+ZMoUmhINp18XKmXpdb5GT7YMsiK/XX2zrjt56CbLg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = bustools;
|
|
command = "bustools version";
|
|
};
|
|
|
|
meta = {
|
|
description = "Program for manipulating BUS files for single cell RNA-Seq datasets";
|
|
longDescription = ''
|
|
bustools is a program for manipulating BUS files for single cell RNA-Seq datasets. It can be used to error correct barcodes, collapse UMIs, produce gene count or transcript compatibility count matrices, and is useful for many other tasks. It is also part of the kallisto | bustools workflow for pre-processing single-cell RNA-seq data.
|
|
'';
|
|
homepage = "https://www.kallistobus.tools/";
|
|
downloadPage = "https://bustools.github.io/download";
|
|
changelog = "https://github.com/BUStools/bustools/releases/tag/v${version}";
|
|
maintainers = [ lib.maintainers.dflores ];
|
|
license = lib.licenses.bsd2;
|
|
mainProgram = "bustools";
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|