blob: 2fff15c3385ec6ac1bd91e67eaf5d7a0cc2216f3 (
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
|
{ bionix
, nixpkgs
, bwaIndexAttrs ? {}
, faidxAttrs ? {}
, alignerStreaming ? false
, flags ? null
, config ? null
}:
with nixpkgs;
with lib;
with bionix.types;
input:
let
ref = matchFiletype "gridss-softClipsToSplitReads" { bam = x: x.ref; } input;
in
stdenv.mkDerivation rec {
name = "gridss-softClipsToSplitReads";
buildInputs = [ 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 -Xmx2G -Dsamjdk.create_index=false \
-cp ${bionix.gridss.jar} gridss.SoftClipsToSplitReads \
REFERENCE_SEQUENCE=ref.fa \
I=${input} \
O=$out \
${optionalString alignerStreaming "ALIGNER_STREAMING=true"} \
${optionalString (config != null) ("CONFIGURATION_FILE=" + bionix.gridss.gridssConfig config)} \
WORKER_THREADS=$NIX_BUILD_CORES
'';
passthru.filetype = filetype.bam { ref = ref; sorting = matchFileSorting "grids-softClipsToSplitReads" { coord = _: input.sorting; name = _: sort.none {}; none = _: input.sorting;} input;};
}
|