}
//Scratch work for testing loading from local mysql db
public void testLoadMySQL() throws Exception {
String url = DBManager.createConnectionURL("mysql", "calcium", "igv_nobel_dev", null);
ResourceLocator locator = new ResourceLocator(url);
locator.setUsername("igv_nobel_dev");
locator.setPassword("nottherealpassword");
String tableName = "CNV";
DBProfile.DBTable table = DBProfile.DBTable.build(locator, tableName);
SegmentedReader reader = new SegmentedReader(locator);
SegmentedAsciiDataSet ds = reader.loadFromDB(table);