blob: 5a2772ebaff29e590ec273f92bd00315970ac7ed (
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
|
{ stdenv
, callPackage
, lib
, bc
, 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 bc ] ++ optional bamOutput samtools;
buildCommand = ''
ln -s ${ref} ref.fa
for f in ${index}/* ; 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
'';
}
|