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

input:

with nixpkgs;
with lib;
with bionix.types;

assert (matchFiletype "samtools-dict" { fa = _: true; } input);

stdenv.mkDerivation {
  name = "samtools-dict";
  buildInputs = [ samtools ];
  buildCommand = ''
    samtools dict ${optionalString (flags != null) flags} ${input} > $out
  '';
}