diff options
author | Justin Bedo <cu@cua0.org> | 2019-01-11 18:55:13 +1100 |
---|---|---|
committer | Justin Bedo <cu@cua0.org> | 2019-01-11 18:55:13 +1100 |
commit | 4d3379075d12ca2b4d89c9ff119a4d6aea53136e (patch) | |
tree | d3329c90e52940f1980985455c070c675539038c | |
parent | bc35eb11bd28b3d3cab659112f8b0d42b7c30204 (diff) |
ucscgenes: fix url to correct hg38
-rwxr-xr-x | lib/references.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/references.nix b/lib/references.nix index cf9b7ef..11a0eea 100755 --- a/lib/references.nix +++ b/lib/references.nix @@ -97,8 +97,8 @@ rec { UCSCgenes = stage { name = "UCSCgenes"; src = pkgs.fetchurl { - url = "http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/refFlat.txt.gz"; - sha256 = "0jfrsmrp6386lw9wq48rs5i0qmm3ijb7ardhkcp29bzvbwf9lqaq"; + url = "http://hgdownload.soe.ucsc.edu/goldenPath/hg38/database/refFlat.txt.gz"; + sha256 = "1f53myn4vpvswzssx2xsiq9si8w58gpcm0f32srq220w36hq9md4"; }; buildCommand = "gunzip < $src > $out"; }; |