aboutsummaryrefslogtreecommitdiff
path: root/tools/strelka.nix
blob: 16f4a2bfce16781bcdb5e52522c614b7731a468b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ bionix }:

with bionix;
with types;

{
  /* Calls somatic variants
  Type: callSomatic :: {...} -> {tumour, normal} -> somatic results
  */
  callSomatic = callBionixE ./strelka-callSomatic.nix;
  /* Calls variants
  Type: call :: {...} -> [input] -> results
  */
  call = callBionixE ./strelka-call.nix;
}