blob: ef53322e76caadeb93aaa5bca55dfcb49be49bbb (
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
41
42
43
|
{ bionix
, bwaIndexAttrs ? { }
, faidxAttrs ? { }
, alignerStreaming ? false
, flags ? null
, config ? null
, heapSize ? "2G"
}:
with bionix;
with lib;
with types;
input:
let
ref = matchFiletype "gridss-softClipsToSplitReads" { bam = x: x.ref; } input;
in
stage rec {
name = "gridss-softClipsToSplitReads";
buildInputs = with pkgs; [ jre bwa ];
buildCommand = ''
ln -s ${ref} ref.fa
ln -s ${bionix.samtools.faidx faidxAttrs ref} ref.fa.fai
for f in ${bionix.bwa.index bwaIndexAttrs ref}/*; do
ln -s $f
done
java -Xmx${heapSize} -Dsamjdk.create_index=false \
-cp ${bionix.gridss.jar} gridss.SoftClipsToSplitReads \
VERBOSITY=WARNING \
REFERENCE_SEQUENCE=ref.fa \
I=${input} \
O=$out \
${optionalString alignerStreaming "ALIGNER_STREAMING=true"} \
${optionalString (config != null) ("OPTIONS_FILE=" + bionix.gridss.gridssConfig config)} \
WORKER_THREADS=$NIX_BUILD_CORES \
${optionalString (flags != null) flags}
'';
passthru.filetype = filetype.bam { inherit ref; sorting = sort.none { }; };
passthru.multicore = true;
}
|