blob: d0f8d7ae9f2382fb043279881b1241819fdcc51a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{ bionix
, flags ? null
}:
input:
with bionix;
with lib;
with types;
assert (matchFiletype "samtools-index" { bam = _: true; } input);
assert (matchFileSorting "samtools-index" { coord = _: true; } input);
stage {
name = "samtools-index";
buildInputs = with pkgs; [ samtools ];
buildCommand = ''
ln -s ${input} input.bam
samtools index -@ $NIX_BUILD_CORES ${optionalString (flags != null) flags} input.bam
cp input.bam.bai $out
'';
passthru.multicore = true;
}
|