public static void main(String[] argv) {
URL url = TreeMap.class.getResource(TREE_CHI);
Tree t = null;
try {
GZIPInputStream gzin = new GZIPInputStream(url.openStream());
t = (Tree) new TreeMLReader().readGraph(gzin);
} catch ( Exception e ) {
e.printStackTrace();
System.exit(1);
}