aboutsummaryrefslogtreecommitdiff
path: root/tools/samtools-markdup.nix
blob: 08b8aa6860d3a88e8129608cccec3eb08a174a9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ bionix
, flags ? null
}:

input:

with bionix;
with lib;
with types;

assert (matchFiletype "samtools-markdup" { bam = _: true; } input);
assert (matchFileSorting "samtools-markdup" { coord = _: true; } input);

stage {
  name = "samtools-markdup";
  buildInputs = with pkgs; [ samtools ];
  buildCommand = ''
    samtools markdup ${optionalString (flags != null) flags} ${input} $out
  '';
  passthru.filetype = input.filetype;
}