diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/references.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/references.nix b/lib/references.nix index 2e5e937..cf9b7ef 100755 --- a/lib/references.nix +++ b/lib/references.nix @@ -94,6 +94,14 @@ rec { }; }; }; + UCSCgenes = stage { + name = "UCSCgenes"; + src = pkgs.fetchurl { + url = "http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/refFlat.txt.gz"; + sha256 = "0jfrsmrp6386lw9wq48rs5i0qmm3ijb7ardhkcp29bzvbwf9lqaq"; + }; + buildCommand = "gunzip < $src > $out"; + }; }; grcm38 = grcm38-p6; |