aboutsummaryrefslogtreecommitdiff
path: root/tools/gridss-collectMetrics.nix
blob: b68aeb13686505bec0f372f21b0b4e7d696e4841 (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
{ bionix
, nixpkgs
, thresholdCoverage ? 10000
, flags ? null
, config ? null
}:

with nixpkgs;
with lib;
with bionix.types;

input:

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


stdenv.mkDerivation rec {
  name = "gridss-collectMetrics";
  buildInputs = [ jre R ];
  buildCommand = ''
    mkdir $out
    java -Xmx1G -cp ${bionix.gridss.jar} \
			gridss.analysis.CollectGridssMetrics \
      ${optionalString (config != null) ("OPTIONS_FILE=" + bionix.gridss.gridssConfig config)} \
			I=${input}\
			O=$out/input \
      AS=true \
			THRESHOLD_COVERAGE=${toString thresholdCoverage}
  '';
}