aboutsummaryrefslogtreecommitdiff
path: root/tools/gridss-computeSamTags.nix
blob: f75cea051f8e9963b3e1923e83aabf8d996c8b43 (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
, blacklist ? null
, bwaIndexAttrs ? {}
, faidxAttrs ? {}
, flags ? null
}:

with nixpkgs;
with lib;
with bionix.types;

input:

let
  ref = matchFiletype "gridss-computeSamTags" { bam = x: x.ref; } input;
  sorted = matchFileSorting "gridss-computeSamTags" { name = _: true; } input;
in

assert(sorted);

stdenv.mkDerivation rec {
  name = "gridss-computeSamTags";
  buildInputs = [ jre ];
  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 -Xmx1G \
      -Dsamjdk.create_index=false \
			-cp ${bionix.gridss.jar} gridss.ComputeSamTags \
			REFERENCE_SEQUENCE=ref.fa \
			WORKING_DIR=$TMP_DIR \
			TMP_DIR=$TMP_DIR \
			I=${input} \
			O=$out \
      AS=true
  '';
  passthru.filetype = input.filetype;
}