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

with bionix;

{
  app = lib.callPackageWith (pkgs // pkgs.pythonPackages) ./cnvkit-app.nix {};

  /* Call CNVs
  Type: callCNV :: {targets :: target file, annotations :: annotation file, ...} -> {normals :: [bam], tumours :: [bam]} -> CNVs
  */
  callCNV = callBionixE ./cnvkit-batch.nix;
}