2020-11-30 08:33:03 +00:00
|
|
|
{ lib, python, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
with python.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "deepTools";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "3.5.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-11-30 08:33:03 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "deeptools";
|
|
|
|
repo = "deepTools";
|
|
|
|
rev = version;
|
2023-11-16 04:20:00 +00:00
|
|
|
sha256 = "sha256-A8YdlMptmJyxWW0EYLjXFIWjIO/mttEC7VYdlCe9MaI=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
format = "pyproject";
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
numpydoc
|
|
|
|
scipy
|
|
|
|
py2bit
|
|
|
|
pybigwig
|
|
|
|
pysam
|
|
|
|
matplotlib
|
|
|
|
plotly
|
|
|
|
deeptoolsintervals
|
2023-11-16 04:20:00 +00:00
|
|
|
importlib-metadata
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
nativeCheckInputs = [ pytest ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://deeptools.readthedocs.io/en/develop";
|
|
|
|
description = "Tools for exploring deep DNA sequencing data";
|
|
|
|
longDescription = ''
|
|
|
|
deepTools contains useful modules to process the mapped reads data for multiple
|
|
|
|
quality checks, creating normalized coverage files in standard bedGraph and bigWig
|
|
|
|
file formats, that allow comparison between different files (for example, treatment and control).
|
|
|
|
Finally, using such normalized and standardized files, deepTools can create many
|
|
|
|
publication-ready visualizations to identify enrichments and for functional
|
|
|
|
annotations of the genome.
|
|
|
|
'';
|
2023-11-16 04:20:00 +00:00
|
|
|
license = with licenses; [ mit bsd3 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ scalavision ];
|
|
|
|
};
|
|
|
|
}
|