aboutsummaryrefslogtreecommitdiff
path: root/tools/cnvkit-scatter.nix
blob: fb7329fcadddfbcdc1ff40ddea0dc39b961bc3fb (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 = with pkgs; [ pkgs.python2Packages.cnvkit ];
  buildCommand = ''
    cnvkit.py scatter -s ${input}/*.cn{s,r} -o plot.pdf
    cp plot.pdf $out
  '';
}