public static void main(String[] args) throws CannotCompileException,
NotFoundException, ParserConfigurationException, IOException {
String wikiinput = args[0];
String graphoutput = args[1];
GraphTokenizer tokenizer = new LinkGraphTokenizer();
InputFormat format = new WikiPageInputFormat();
PreprocessJobTest test = new PreprocessJobTest();
Job job = test.new Job();
job.run(tokenizer, format, new String[] { wikiinput }, graphoutput);