* @throws XMLStreamException
*/
public static void main(String[] args) throws XMLStreamException, IOException {
SBMLDocument doc = SBMLReader.read(new File(args[0]));
Filter filter = new NameFilter(args[1]);
System.out.println(doc.filter(filter));
}
}