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

ref:

with bionix;
with lib;
with types;

assert (matchFiletype "subread-index" { fa = _: true; } ref);

stage {
  name = "subread-index";
  buildInputs = with pkgs; [ subread ];
  buildCommand = ''
    mkdir $out
    subread-buildindex ${optionalString (flags != null) flags} -o $out/ref ${ref}
  '';
}