blob: 003f7f80fbd5b7daa611749b53324ac9e3dede09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ bionix
, dbnsfp
, heapSize ? "31g"
, flags ? ""
}:
input:
with bionix;
with types;
assert (matchFiletype "snpeff-dbnsfp" { vcf = _: true; } input);
stage {
name = "snpeff-dbnsfp";
JAVA_TOOL_OPTIONS = "-Xmx${heapSize}";
buildCommand = ''
ln -s ${dbnsfp.db} dbNSFP.txt.gz
ln -s ${dbnsfp.index} dbNSFP.txt.gz.tbi
snpsift dbnsfp -db dbNSFP.txt.gz ${input} > $out
'';
buildInputs = with pkgs; [ snpeff ];
passthru.filetype = input.filetype;
}
|