mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
pythonPackages.cnvkit: init at 0.9.6
This commit is contained in:
parent
4bb197f4b2
commit
f889214bc1
2 changed files with 50 additions and 0 deletions
48
pkgs/development/python-modules/cnvkit/default.nix
Normal file
48
pkgs/development/python-modules/cnvkit/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
{ lib
|
||||
, fetchPypi
|
||||
, rPackages
|
||||
, rWrapper
|
||||
, buildPythonPackage
|
||||
, biopython
|
||||
, numpy
|
||||
, scipy
|
||||
, pandas
|
||||
, matplotlib
|
||||
, reportlab
|
||||
, pysam
|
||||
, future
|
||||
, pillow
|
||||
, pomegranate
|
||||
, pyfaidx
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "CNVkit";
|
||||
version = "0.9.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1hj8c98s538i0hg5mrz4bw4v07qmcl51rhxq611rj2nglnc9r25y";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
biopython
|
||||
numpy
|
||||
scipy
|
||||
pandas
|
||||
matplotlib
|
||||
reportlab
|
||||
pyfaidx
|
||||
pysam
|
||||
future
|
||||
pillow
|
||||
pomegranate
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://cnvkit.readthedocs.io";
|
||||
description = "A Python library and command-line software toolkit to infer and visualize copy number from high-throughput DNA sequencing data";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.jbedo ];
|
||||
};
|
||||
}
|
|
@ -346,6 +346,8 @@ in {
|
|||
|
||||
clustershell = callPackage ../development/python-modules/clustershell { };
|
||||
|
||||
cnvkit = callPackage ../development/python-modules/cnvkit { };
|
||||
|
||||
cozy = callPackage ../development/python-modules/cozy { };
|
||||
|
||||
curio = callPackage ../development/python-modules/curio { };
|
||||
|
|
Loading…
Reference in a new issue