This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Florin Chelaru ( florinc [at] umd [dot] edu ) | |
* Date: 5/6/14 | |
* Time: 2:41 PM | |
*/ | |
goog.provide('epiviz.plugins.data.UCSCDataProvider'); | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Florin Chelaru ( florinc [at] umd [dot] edu ) | |
* Date: 5/6/14 | |
* Time: 2:41 PM | |
*/ | |
goog.provide('epiviz.plugins.data.UCSCDataProvider'); | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
epiviz.EpiViz.SETTINGS['chartCustomSettings']['epiviz.plugins.charts.LineTrack']['showLines'] = false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Florin Chelaru ( florinc [at] umd [dot] edu ) | |
* Date: 10/9/13 | |
* Time: 11:13 AM | |
*/ | |
/** | |
* Overrides the default configuration settings for EpiViz | |
*/ | |
epiviz.EpiViz.SETTINGS = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
epiviz.EpiViz.SETTINGS.chartSettings = { | |
default: { | |
colors: new epiviz.ui.charts.ColorPalette(epiviz.Config.COLORS_BRIGHT), | |
decorations: [ | |
'epiviz.ui.charts.decoration.RemoveChartButton', | |
'epiviz.ui.charts.decoration.SaveChartButton', | |
'epiviz.ui.charts.decoration.ChartColorsButton', | |
'epiviz.ui.charts.decoration.CustomSettingsButton', | |
'epiviz.ui.charts.decoration.ToggleTooltipButton', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = document.cookie; | |
alert(x); | |
window.open('http://epiviz-dev.cbcb.umd.edu/'); | |
console.log('still ok'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
epiviz.Config.SETTINGS.chartTypes.push('epiviz.plugins.charts.MyTrackType'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Florin Chelaru ( florinc [at] umd [dot] edu ) | |
* Date: 5/6/14 | |
* Time: 2:41 PM | |
*/ | |
goog.provide('epiviz.plugins.data.UCSCDataProvider'); | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a new color palette | |
var myPalette = new epiviz.ui.charts.ColorPalette(['#ed2d2e', '#008c47'], 'My Palette', 'my-palette'); | |
epiviz.Config.SETTINGS.colorPalettes.push(myPalette); | |
// Set the default colors for the Scatter Plot to '#ed2d2e' and '#008c47' | |
epiviz.Config.SETTINGS.chartSettings['epiviz.plugins.charts.ScatterPlot']['colors'] = 'my-palette'; | |
// Set the Scatter Plot custom setting circleRadiusRatio to 0.02 | |
epiviz.Config.SETTINGS.chartCustomSettings['epiviz.plugins.charts.ScatterPlot']['circleRadiusRatio'] = 0.02; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
epiviz.Config.SETTINGS.dataProviders.push('epiviz.plugins.data.MyDataProvider'); |