aboutsummaryrefslogtreecommitdiff
path: root/tools/strelka-call.nix
blob: e90bdfd2a75dd294d9ea8eced32093d272db9737 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
{ bionix
, indexAttrs ? {}
, bamIndexAttrs ? {}
, flags ? null
}:

inputs:

with bionix;
with lib;
with types;

let
  filename = path: last (splitString "/" path);
  getref = f: matchFiletype "strelka-call" { bam = x: x.ref; } f;
  refs = map getref inputs;
  ref = head refs;

  drv = bionix.strelka.call {inherit indexAttrs bamIndexAttrs flags;} inputs;

in

assert (length (unique refs) == 1);

stage {
  name = "strelka-call";
  buildInputs = with pkgs; [ strelka ];
  buildCommand = ''
    ln -s ${ref} ref.fa
    ln -s ${bionix.samtools.faidx indexAttrs ref} ref.fa.fai
    ${concatMapStringsSep "\n" (p: "ln -s ${p} ${filename p}.bam") inputs}
    ${concatMapStringsSep "\n" (p: "ln -s ${bionix.samtools.index bamIndexAttrs p} ${filename p}.bai") inputs}

    configureStrelkaGermlineWorkflow.py \
    ${concatMapStringsSep " " (i: "--bam ${filename i}.bam") inputs} \
      --ref ref.fa \
      --runDir $TMPDIR

    ./runWorkflow.py \
      -m local \
      -j $NIX_BUILD_CORES 2>&1

    cp -r results $out
  '';
  passthru.variants = stage {
    name = "strelka-call-variants";
    buildCommand = ''
      ln -s ${drv}/variants/variants.vcf.gz $out
    '';
    passthru.filetype = filetype.gz (filetype.vcf {ref=ref;});
  };
}