So there is no API at the moment there. Sorry! You would need to instrument few classes to get the data you need printed out or saved into a file.
Here is a code piece which I copy/pasted into here, to illustrate the idea. So you get the rules calling SequiturFactory and then iterate over their corresponding intervals (for (RuleInterval ri : rule.getRuleIntervals())) printing their locations:
GrammarRules rules = SequiturFactory.series2SequiturRules(ts, windowSize, paaSize,
alphabetSize, NumerosityReductionStrategy.EXACT, 0.05D);
ArrayList<RuleInterval> intervals = new ArrayList<RuleInterval>();
// populate all intervals with their frequency
//
for (GrammarRuleRecord rule : rules) {
//
// TODO: do we care about long rules?
//
// if (0 == rule.ruleNumber() || rule.getRuleYield() > 2) {
if (0 == rule.ruleNumber()) {
continue;
}
for (RuleInterval ri : rule.getRuleIntervals()) {
ri.setCoverage(rule.getRuleIntervals().size());
ri.setId(rule.ruleNumber());
intervals.add(ri);
}
}