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

with bionix;

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

  /* Scatter plot from CNV calls
  Type: scatterPlot :: {} -> CNVs -> PDF
  */
  scatterPlot = callBionixE ./cnvkit-scatter.nix;
}