aboutsummaryrefslogtreecommitdiff
path: root/tools/snpeff.nix
blob: fb3f4a9f5ebf48d23763e04e615929f9f7c8b94f (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;
}