aboutsummaryrefslogtreecommitdiff
path: root/tools/whisper-align.nix
blob: 1731bfe4efd9bedf347c5f371fe6165735a0bb0a (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ bionix
, ref
, bamOutput ? true
, flags ? null
, indexAttrs ? {}
}:

{ input1
, input2 ? null
}:

with bionix;
with lib;
with types;
with compression;

let
  fa = f: matchFiletype "whisper-ref" { fa = _: f; } f;
  fq = f: matchFiletype "whisper-input" { fq = _: f; gz = matchFiletype' "whisper-input" { fq = _: f; }; } f;

in stage {
  name = "whisper-mem";
  buildInputs = with pkgs; [ whisper ];
  buildCommand = ''
    ln -s ${fa ref} ref.fa
    for f in ${bionix.whisper.index indexAttrs ref}/* ; do
      ln -s $f
    done
    whisper ${optionalString (flags != null) flags} -t $NIX_BUILD_CORES \
      ${optionalString bamOutput "-store-BAM"} \
      ${optionalString (input2 != null) "-rp"} \
      -stdout \
      index ${fq input1} \
      ${optionalString (input2 != null) (fq input2)} \
      > $out
  '';
  passthru.filetype = if bamOutput then filetype.bam {ref = ref; sorting = sort.none {};} else filetype.sam {ref = ref; sorting = sort.name {};};
  passthru.multicore = true;
}