blob: e4b6369b62dc62b6928c060278db3073cc048945 (
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
|
{ bionix
, flags ? null
}:
inputBam:
with bionix;
with lib;
with types;
assert (matchFiletype "picard-markDuplicates" { bam = _: true; } inputBam);
assert (matchFileSorting
"picard-markDuplicates"
{ coord = _: true; name = _: true; }
inputBam);
# Note that picard markDuplicates has different behaviour depending on whether the input
# is name-sorted or coordinate-sorted.
stage {
name = "picard-markDuplicates";
buildInputs = with pkgs;
[ picard-tools ];
outputs = [ "out" "metrics" ];
buildCommand = ''
picard MarkDuplicates \
I=${inputBam} \
O=$out \
M=$metrics \
${optionalString (flags != null) flags}
'';
passthru.filetype = inputBam.filetype;
}
|