aboutsummaryrefslogtreecommitdiff
path: root/tools/mutect.nix
blob: addea778f65351e72da472b9191710455e3414ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{bionix}:

with bionix;

{
  app = pkgs.callPackage ./mutect-app.nix {};

  /* Call somatic variants with mutect
  Type: { cosmic, dbsnp, ... } -> { normal :: bam, tumour :: bam } -> vcf
  */
  call = callBionixE ./mutect-call.nix;
}