aboutsummaryrefslogtreecommitdiff
path: root/tools/gridss-extractSVReads.nix
blob: e3ed1cc37a96697da0a95a2c770ebaae9084bf19 (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
{ bionix
, nixpkgs
, dictIndexAttrs ? {}
, faidxAttrs ? {}
, flags ? null
, unmappedReads ? false
, minClipLength ? 5
, config ? null
}:

with nixpkgs;
with lib;
with bionix.types;

input:

let
  ref = matchFiletype "gridss-extractSVReads" { bam = x: x.ref; } input;
in


stdenv.mkDerivation rec {
  name = "gridss-extractSVReads";
  buildInputs = [ jre R ];
  buildCommand = ''
    ln -s ${ref} ref.fa
    ln -s ${bionix.samtools.faidx faidxAttrs ref} ref.fa.fai
    ln -s ${bionix.samtools.dict dictIndexAttrs ref} ref.fa.dict
    ln -s ${input} input.bam
    mkdir $out
    java -Dsamjdk.create_index=true \
      -cp ${bionix.gridss.jar} gridss.ExtractSVReads \
      REFERENCE_SEQUENCE=ref.fa \
      I=input.bam \
      O=$out/input.sv.bam \
      METRICS_OUTPUT=$out/input.sv_metrics \
      INSERT_SIZE_METRICS=$out/input.insert_size_metrics \
      UNMAPPED_READS=${if unmappedReads then "true" else "false"} \
      ${optionalString config ("CONFIGURATION_FILE=" + gridssConfig config)} \
      MIN_CLIP_LENGTH=${toString minClipLength}
  '';
}