aboutsummaryrefslogtreecommitdiff
path: root/tools/bwa-mem.nix
blob: 9af3992828bec8d190590ccafb2ac6dfa2990eb5 (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
{ stdenv
, callPackage
, lib
, bc
, bwa
, index ? callPackage ./bwa-index.nix { inherit bwa stdenv lib; }
, samtools ? null
, ref
, bamOutput ? true
, flags ? null
}:

{ input1
, input2 ? null
}:

assert bamOutput -> samtools != null;

with lib;

stdenv.mkDerivation {
  name = "bwa-mem";
  buildInputs = [ bwa bc ] ++ optional bamOutput samtools;
  buildCommand = ''
    ln -s ${ref} ref.fa
    for f in ${index ref}/* ; do
      ln -s $f
    done
    cores=$(echo $NIX_BUILD_CORES ${optionalString bamOutput "- 1"} | bc)
    if [[ $cores -lt 1 ]] ; then
      >&2 echo "not enough build cores"
      exit 1
    fi
    bwa mem ${optionalString (flags != null) flags} -t $cores ref.fa ${input1} \
      ${optionalString (input2 != null) input2} \
      ${optionalString bamOutput "| samtools view -b"} \
      > $out
  '';
}