2020-10-30 09:42:10 +01:00
|
|
|
{ lib, python, fetchFromGitHub }:
|
2019-10-31 19:34:05 +01:00
|
|
|
with python.pkgs;
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "deepTools";
|
2022-01-21 06:36:24 +01:00
|
|
|
version = "3.5.1";
|
2019-10-31 19:34:05 +01:00
|
|
|
|
2020-10-30 09:42:10 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "deeptools";
|
|
|
|
repo = "deepTools";
|
|
|
|
rev = version;
|
2022-01-21 06:36:24 +01:00
|
|
|
sha256 = "07v8vb2x4b0mgw0mvcj91vj1fqbcwizwsniysl2cvmv93gad8gbp";
|
2019-10-31 19:34:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
|
|
|
numpydoc
|
|
|
|
scipy
|
|
|
|
py2bit
|
|
|
|
pybigwig
|
|
|
|
pysam
|
|
|
|
matplotlib
|
|
|
|
plotly
|
|
|
|
deeptoolsintervals
|
|
|
|
];
|
|
|
|
|
2020-10-30 09:42:10 +01:00
|
|
|
checkInputs = [ nose ];
|
2019-10-31 19:34:05 +01: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.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ scalavision ];
|
|
|
|
};
|
|
|
|
}
|