summary refs log tree commit diff
path: root/pkgs/applications/science/biology/eggnog-mapper/default.nix
blob: a15425ec2137bfdb66b9a61e25a4655bf68ab6a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper, python27Packages, wget, diamond, hmmer }:

python27Packages.buildPythonApplication rec {
  pname = "eggnog-mapper";
  version = "1.0.3";

  src = fetchFromGitHub {
    owner = "eggnogdb";
    repo = "eggnog-mapper";
    rev = "${version}";
    sha256 = "1aaaflppy84bhkh2hb5gnzm4xgrz0rz0cgfpadr9w8cva8p0sqdv";
  };

  patches = (fetchpatch {
    url = https://github.com/eggnogdb/eggnog-mapper/pull/125/commits/b7828e4c8c1c453e391aef050f06ff3f84ff9faf.patch;
    sha256 = "0nz1a7ybm4j5c7vdm3annnxz9036iam2044hia341a0am9wydmzk";
  });

  buildInputs = [ makeWrapper ];
  propagatedBuildInputs = [ python27Packages.biopython wget diamond hmmer ];

  # make emapper find diamond & hmmer
  makeWrapperArgs = [
    ''--prefix PATH ':' "${diamond}/bin"''
    ''--prefix PATH ':' "${hmmer}/bin"''
    ];

  # Tests rely on some of the databases being available, which is not bundled
  # with this package as (1) in total, they represent >100GB of data, and (2)
  # the user can download only those that interest them.
  doCheck = false;

  meta = with stdenv.lib; {
    description = "Fast genome-wide functional annotation through orthology assignment";
    license = licenses.gpl2;
    homepage = https://github.com/eggnogdb/eggnog-mapper/wiki;
    maintainers = with maintainers; [ luispedro ];
    platforms = platforms.all;
  };
}