Skip to content

Commit

Permalink
igv fix - get cytobandURL from hgdownload.soe.ucsc.edu (#4355)
Browse files Browse the repository at this point in the history
* try without proxy

* try one first
  • Loading branch information
jklugherz authored Sep 9, 2024
1 parent b319f3d commit 637474a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
CSP_INCLUDE_NONCE_IN = ['script-src', 'style-src', 'style-src-elem']
CSP_FONT_SRC = ('https://fonts.gstatic.com', 'data:', "'self'")
CSP_CONNECT_SRC = ("'self'", 'https://gtexportal.org', 'https://www.google-analytics.com', 'https://igv.org',
'https://storage.googleapis.com', # google storage used by IGV
'https://storage.googleapis.com', 'https://hgdownload.soe.ucsc.edu', # used by IGV
'https://reg.genome.network')
CSP_SCRIPT_SRC = ("'self'", "'unsafe-eval'", 'https://www.googletagmanager.com')
CSP_IMG_SRC = ("'self'", 'https://www.google-analytics.com', 'https://storage.googleapis.com',
Expand Down
6 changes: 3 additions & 3 deletions ui/shared/components/panel/family/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,10 @@ const REFERENCE_URLS = [
},
{
key: 'cytobandURL',
baseUrl: `${BASE_REFERENCE_URL}/s3`,
baseUrl: 'https://hgdownload.soe.ucsc.edu/goldenPath',
path: {
37: 'igv.broadinstitute.org/genomes/seq/hg19/cytoBand.txt',
38: 'igv.org.genomes/hg38/annotations/cytoBandIdeo.txt.gz',
37: 'hg19/database/cytoBand.txt.gz',
38: 'hg38/database/cytoBandIdeo.txt.gz',
},
},
{
Expand Down

0 comments on commit 637474a

Please sign in to comment.