diff options
author | Justin Bedo <cu@cua0.org> | 2019-01-13 09:12:28 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2019-01-13 09:12:28 +1100 |
commit | 5eb846d72d7f56e025a2598c3ad9c4bae7b8542a (patch) | |
tree | 86070f204cffd83e3512aba76ef72ed359bff08d /tools | |
parent | d98c0d62587ffb4b6f7106d07dfa16de729dbc8e (diff) |
snpeff-dbnsfp: fix buildInputs
Diffstat (limited to 'tools')
-rw-r--r-- | tools/snpeff-dbnsfp.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/snpeff-dbnsfp.nix b/tools/snpeff-dbnsfp.nix index dd94760..1d144cd 100644 --- a/tools/snpeff-dbnsfp.nix +++ b/tools/snpeff-dbnsfp.nix @@ -16,6 +16,6 @@ stage { ln -s ${dbnsfp.index} dbNSFP.txt.gz.tbi snpsift dbnsfp -db dbNSFP.txt.gz ${input} > $out ''; - buildInputs = [ snpeff ]; + buildInputs = with pkgs; [ snpeff ]; passthru.filetype = input.filetype; } |