mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
deeptools: init at 3.3.1
This commit is contained in:
parent
f379992680
commit
d9b40f6397
42
pkgs/applications/science/biology/deeptools/default.nix
Normal file
42
pkgs/applications/science/biology/deeptools/default.nix
Normal file
@ -0,0 +1,42 @@
|
||||
{ lib
|
||||
, python
|
||||
}:
|
||||
with python.pkgs;
|
||||
buildPythonApplication rec {
|
||||
pname = "deepTools";
|
||||
version = "3.3.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "08p36p9ncj5s8qf1r7h83x4rnmi63l3yk6mnr3wgpg2qgvwl0hji";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
numpy
|
||||
numpydoc
|
||||
scipy
|
||||
py2bit
|
||||
pybigwig
|
||||
pysam
|
||||
matplotlib
|
||||
plotly
|
||||
deeptoolsintervals
|
||||
];
|
||||
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -23286,6 +23286,8 @@ in
|
||||
|
||||
dcm2niix = callPackage ../applications/science/biology/dcm2niix { };
|
||||
|
||||
deeptools = callPackage ../applications/science/biology/deeptools { python = python3; };
|
||||
|
||||
delly = callPackage ../applications/science/biology/delly { };
|
||||
|
||||
diamond = callPackage ../applications/science/biology/diamond { };
|
||||
|
Loading…
Reference in New Issue
Block a user