aboutsummaryrefslogtreecommitdiff
path: root/tools/bwa.nix
blob: 20a308f7208d82dbbd9ac95f6a3ba30e6fe0bb46 (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
{ stdenv
, callPackage
, lib
, bwa
, samtools ? null
, ref
, bamOutput ? true
, flags ? null
}:

{ input1
, input2 ? null
}:

assert bamOutput -> samtools != null;

with lib;

let index = callPackage ./bwa-index.nix { inherit bwa stdenv lib; } ref;

in stdenv.mkDerivation {
  name = "bwa-mem";
  buildInputs = [ bwa ] ++ optional bamOutput samtools;
  buildCommand = ''
    ln -s ${ref} ref.fa
    for f in ${index}/* ; do
      ln -s $f
    done
    bwa mem ${optionalString (flags != null) flags} -t $NIX_BUILD_CORES ref.fa ${input1} \
      ${optionalString (input2 != null) input2} \
      ${optionalString bamOutput "| samtools view -b"} \
      > $out
  '';
}