6970717273747576
public List<String> listPerBaseSummaryAnalyses() throws RunStatsException { try { return reports.listPerBaseSummaryAnalyses(); } catch (SQLException e) { throw new RunStatsException("Cannot retrieve the list of per-base summary analyses: " + e.getMessage()); } }
7879808182838485
public List<String> listGlobalRunAnalyses() throws RunStatsException { try { return reports.listGlobalAnalyses(); } catch (SQLException e) { throw new RunStatsException("Cannot retrieve the list of global run-based analyses: " + e.getMessage()); } }