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