Skip to content

Commit

Permalink
Avoid http protocol. Fix white background
Browse files Browse the repository at this point in the history
  • Loading branch information
flekschas committed Jun 18, 2018
1 parent df2dc79 commit f6dafb2
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/utils/basic-higlass-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const viewTemplate = {
uid: '<VIEW>.1',
type: 'horizontal-gene-annotations',
tilesetUid: '<GENES>',
server: 'http://higlass.io/api/v1',
server: '//higlass.io/api/v1',
options: {
minusStrandColor: '#999',
plusStrandColor: '#999'
Expand All @@ -44,15 +44,15 @@ const viewTemplate = {
{
uid: '<VIEW>.2',
chromInfoPath:
'http://higlass.io/api/v1/chrom-sizes/?id=<CHROMS>',
'//higlass.io/api/v1/chrom-sizes/?id=<CHROMS>',
type: 'horizontal-chromosome-labels'
}
],
left: [
{
uid: '<VIEW>.3',
chromInfoPath:
'http://higlass.io/api/v1/chrom-sizes/?id=<CHROMS>',
'//higlass.io/api/v1/chrom-sizes/?id=<CHROMS>',
type: 'vertical-chromosome-labels'
}
],
Expand All @@ -67,7 +67,8 @@ const viewTemplate = {
tilesetUid: '<MATRIX>',
type: 'heatmap',
options: {
colorRange: ['#FFFFFF', '#ffed1a', '#ff5500', '#540000']
colorRange: ['#FFFFFF', '#ffed1a', '#ff5500', '#540000'],
backgroundColor: 'white'
}
}
]
Expand Down

0 comments on commit f6dafb2

Please sign in to comment.