6 python3.pkgs.buildPythonApplication rec {
11 src = fetchFromGitHub {
14 rev = "refs/tags/${version}";
15 hash = "sha256-2kSlL7Y5f/FjVtStnmz+GlTw2oymrtxOCaXlqgbQ7FU=";
18 nativeBuildInputs = with python3.pkgs; [
22 propagatedBuildInputs = with python3.pkgs; [
35 nativeCheckInputs = with python3.pkgs; [
40 export PATH="$out/bin:$PATH"
44 # tests trip on `len(sys.argv) == 1`
45 "deeptools/test/test_bigwigAverage.py"
46 "deeptools/test/test_bigwigCompare_and_multiBigwigSummary.py"
47 "deeptools/test/test_heatmapper.py"
48 "deeptools/test/test_multiBamSummary.py"
52 homepage = "https://deeptools.readthedocs.io/en/develop";
53 description = "Tools for exploring deep DNA sequencing data";
55 deepTools contains useful modules to process the mapped reads data for multiple
56 quality checks, creating normalized coverage files in standard bedGraph and bigWig
57 file formats, that allow comparison between different files (for example, treatment and control).
58 Finally, using such normalized and standardized files, deepTools can create many
59 publication-ready visualizations to identify enrichments and for functional
60 annotations of the genome.
62 license = with licenses; [ mit bsd3 ];
63 maintainers = with maintainers; [ scalavision ];