aboutsummaryrefslogtreecommitdiff
path: root/tools/cnvkit-scatter.nix
blob: f9dc7f6e386224dd246ffd2556ce1e54748faf92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{bionix
,flags ? null}:

input:

with bionix;
with lib;
with types;

stage {
  name = "cnvkit-scatter";
  buildInputs = [ cnvkit.app ];
  buildCommand = ''
    cnvkit.py scatter -s ${input}/*.cn{s,r} -o plot.pdf
    cp plot.pdf $out
  '';
}