blob: 45a0edc613aa0aa95f20da5a3dd6e8fb0099347d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ bionix }:
with bionix;
{
/* Annotate variants with SNPEff database. Some annotation DBs available in bionix.ref (e.g., bionix.ref.grch38.snpeff.db).
Type: { db, ... } -> vcf -> vcf
*/
annotate = callBionixE ./snpeff-annotate.nix;
/* Annotate variants with dbNSFP database. Some dbNSFP annotation DBs available in bionix.ref (e.g., bionix.ref.grch38.snpeff.dbNSFP).
Type: { dbnsfp, ... } -> vcf -> vcf
*/
dbnsfp = callBionixE ./snpeff-dbnsfp.nix;
}
|