summary refs log tree commit diff
path: root/pkgs/applications/science/biology/mosdepth/default.nix
blob: f2825eeb97bed31dcd5cb27363d6d72885e7ccfb (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
{ lib, nimPackages, fetchFromGitHub, docopt, hts, pcre }:

nimPackages.buildNimPackage rec {
  pname = "mosdepth";
  version = "0.3.5";
  nimBinOnly = true;

  src = fetchFromGitHub {
    owner = "brentp";
    repo = "mosdepth";
    rev = "v${version}";
    sha256 = "sha256-tG3J51PS6A0WBCZ+j/Nf7aaukFV+DZJsxpbTbvwu0zc=";
  };

  buildInputs = [ docopt hts pcre ];
  nimFlags = hts.nimFlags ++ [ "--threads:off" ];

  meta = with lib; {
    description = "fast BAM/CRAM depth calculation for WGS, exome, or targeted sequencing";
    license = licenses.mit;
    homepage = "https://github.com/brentp/mosdepth";
    maintainers = with maintainers; [ jbedo ];
    platforms = platforms.linux;
  };
}