-
Notifications
You must be signed in to change notification settings - Fork 5
Launch with Testing Views
yubowenok edited this page Oct 29, 2014
·
4 revisions
You can launch Genotet with testing views configured in test.js. Simply modify the following function createTestViews to specify the default testing views that will be shown at the startup of Genotet (or when Test Preset is clicked in Preset Layout).
function createTestViews() {
// The views defined here will be launched when the system starts,
// and when "Test Preset" button is hit
createView("Chart", "chart").load();
createView("Network", "network").load();
createView("Genome Browser", "binding").load();
/*
* the following code create a network and load some data
*/
var netview = createView("Network1", "network");
netview.load({
network: "th17",
genesRegex: "^BATF$|^RORC$|^STAT3$|^FOSL2$|^MAF$|^IRF4$"
});
}