aboutsummaryrefslogtreecommitdiff
path: root/tools/mutect.nix
blob: 8f40deef054932eef8425a727c29b2b83ec14046 (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;
}