Skip to content

Commit

Permalink
tiddit: init 3.6.1
Browse files Browse the repository at this point in the history
Genomic tool to call structural variations.

This packages requires 2 executables,packaging fermi2, bwt2, that are
packaged in the same derivation and added to the path later on.
  • Loading branch information
apraga committed Oct 29, 2024
1 parent 6ae95d5 commit e5b0ce4
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions pkgs/by-name/ti/tiddit/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
lib,
fermi2,
ropebwt2,
fetchFromGitHub,
python3Packages,
stdenv,
}:
python3Packages.buildPythonApplication {
name = "tiddit";
version = "3.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "SciLifeLab";
repo = "TIDDIT";
rev = "TIDDIT-3.6.1";
hash = "sha256-OeqVQJDw0fmSDWIGab2qtTJCzZxqLY2XzRqaTRuPIdI=";
};

build-system = with python3Packages; [
setuptools
wheel
];

dependencies = with python3Packages; [
cython
joblib
numpy
pysam
];
propagatedBuildInputs = [
fermi2
ropebwt2
];

meta = with lib; {
homepage = "https://github.com/SciLifeLab/TIDDIT";
description = "Identify chromosomal rearrangements using Mate Pair or Paired End sequencing data";
mainProgram = "tiddit";
license = licenses.gpl3Only;
maintainers = with maintainers; [ apraga ];
platforms = platforms.unix;
};
}

0 comments on commit e5b0ce4

Please sign in to comment.