aboutsummaryrefslogtreecommitdiff
path: root/tools/mosdepth-depth.nix
blob: 7043c4343be205e31f1b99247055fde4bf1ab5a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ bionix
, nixpkgs
, indexAttrs ? {}
, flags ? null
}:

with nixpkgs;
with lib;

input:

stdenv.mkDerivation {
  name = "mosdepth-depth";
  buildInputs = [ mosdepth ];
  buildCommand = ''
    mkdir $out
    ln -s ${input} input.bam
    ln -s ${bionix.samtools.index indexAttrs input} input.bam.bai
    mosdepth -t $NIX_BUILD_CORES ${optionalString (flags != null) flags} $out/out input.bam
  '';
}