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

input:

with bionix;
with lib;
with types;

assert (matchFiletype "samtools-tabix" { bgz = _: true; } input);

stage {

  name = "samtools-tabix";
  buildInputs = with pkgs; [ htslib ];
  buildCommand = ''
    ln -s ${input} input.bgz
    tabix input.bgz
    cp input.bgz.tbi $out
  '';
}