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

with bionix;

{
  /* Call variants for a population
    Type: { fast :: bool, very-fast :: bool, max-genotypes :: int, targets :: FilePath + [string], ... } -> [bam] -> vcf
  */
  call = callBionixE ./octopus-call.nix;

  /* Call somatic variants
    Type: { fast :: bool, very-fast :: bool, max-genotypes :: int, targets :: FilePath + [string], ... } -> { normal :: bam, tumours :: [bam] } -> vcf
  */
  callSomatic = callBionixE ./octopus-callSomatic.nix;
}