diff options
author | l-d-s <distefano.l@wehi.edu.au> | 2018-12-06 14:30:08 +1100 |
---|---|---|
committer | l-d-s <distefano.l@wehi.edu.au> | 2018-12-06 14:30:08 +1100 |
commit | 25e9aae54ef8ae2b88a7ae677b4fd20d567e1a91 (patch) | |
tree | 0a8eedc3bf698c6b02399e468c5a1dc0968bc0a9 /tools | |
parent | 16951e6f99636a2c9d924d49c549a918e403f276 (diff) |
gridss: remove redundant collectGridssMetrics
Diffstat (limited to 'tools')
-rw-r--r-- | tools/gridss-collectGridssMetrics.nix | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/gridss-collectGridssMetrics.nix b/tools/gridss-collectGridssMetrics.nix deleted file mode 100644 index 91e04c7..0000000 --- a/tools/gridss-collectGridssMetrics.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ bionix -, nixpkgs -, thresholdCoverage ? 10000 -, flags ? null -, config ? null -}: - -with nixpkgs; -with lib; -with bionix.types; - -input: - -let - ref = matchFiletype "gridss-collectGridssMetrics" { bam = x: x.ref; } input; - sorted = matchFileSorting "gridss-collectGridssMetrics" { name = _: true; } input; -in - - -stdenv.mkDerivation rec { - name = "gridss-collectGridssMetrics"; - buildInputs = [ jre ]; - buildCommand = '' - mkdir $out - ln -s ${input} input.bam - java -Xmx1G -cp ${bionix.gridss.jar} \ - gridss.analysis.CollectGridssMetrics \ - ${optionalString sorted "ASSUME_SORTED=true"} \ - ${optionalString (config != null) ("OPTIONS_FILE=" + bionix.gridss.gridssConfig config)} \ - I=input.bam \ - O=$out \ - THRESHOLD_COVERAGE=${toString thresholdCoverage} - ''; -} |