Skip to content

Commit

Permalink
Merge pull request #28320 from rybern/add-poretools
Browse files Browse the repository at this point in the history
poretools: init at 0.6.0
  • Loading branch information
FRidh committed Aug 20, 2017
2 parents 6c3513b + 749e702 commit 5b8cd48
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/applications/science/biology/poretools/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ stdenv, pythonPackages, fetchFromGitHub }:

pythonPackages.buildPythonPackage rec {
pname = "poretools";
version = "unstable-2016-07-10";
name = "${pname}-${version}";

src = fetchFromGitHub {
repo = pname;
owner = "arq5x";
rev = "e426b1f09e86ac259a00c261c79df91510777407";
sha256 = "0bglj833wxpp3cq430p1d3xp085ls221js2y90w7ir2x5ay8l7am";
};

propagatedBuildInputs = [pythonPackages.h5py pythonPackages.matplotlib pythonPackages.seaborn pythonPackages.pandas];

meta = {
description = "a toolkit for working with nanopore sequencing data from Oxford Nanopore";
license = stdenv.lib.licenses.mit;
homepage = http://poretools.readthedocs.io/en/latest/;
maintainers = [stdenv.lib.maintainers.rybern];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3829,6 +3829,8 @@ with pkgs;

popfile = callPackage ../tools/text/popfile { };

poretools = callPackage ../applications/science/biology/poretools { };

postscript-lexmark = callPackage ../misc/drivers/postscript-lexmark { };

povray = callPackage ../tools/graphics/povray { };
Expand Down

0 comments on commit 5b8cd48

Please sign in to comment.