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
53 lines
1021 B
Nix
53 lines
1021 B
Nix
{
|
|
bwa,
|
|
lib,
|
|
fermi2,
|
|
ropebwt2,
|
|
fetchFromGitHub,
|
|
python3Packages,
|
|
}:
|
|
python3Packages.buildPythonApplication rec {
|
|
name = "tiddit";
|
|
version = "3.6.1";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SciLifeLab";
|
|
repo = "TIDDIT";
|
|
tag = "TIDDIT-${version}";
|
|
hash = "sha256-OeqVQJDw0fmSDWIGab2qtTJCzZxqLY2XzRqaTRuPIdI=";
|
|
};
|
|
|
|
build-system = with python3Packages; [
|
|
setuptools
|
|
wheel
|
|
];
|
|
|
|
dependencies = with python3Packages; [
|
|
cython
|
|
joblib
|
|
numpy
|
|
pysam
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--prefix PATH : ${
|
|
lib.makeBinPath [
|
|
bwa
|
|
fermi2
|
|
ropebwt2
|
|
]
|
|
}"
|
|
"--set PYTHONPATH $PYTHONPATH"
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/SciLifeLab/TIDDIT";
|
|
description = "Identify chromosomal rearrangements using Mate Pair or Paired End sequencing data";
|
|
mainProgram = "tiddit";
|
|
license = lib.licenses.gpl3Only;
|
|
maintainers = with lib.maintainers; [ apraga ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|