aboutsummaryrefslogtreecommitdiff
path: root/tools/octopus.nix
blob: 858d13313ef70d2984ea85a1bd659b75b13ced19 (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;
}