@Test
  public final void testTeamENMatch() throws IOException, ExecException {
    InputStream inputStream = getClass().getResourceAsStream("/data.txt");
    InputStreamReader input = new InputStreamReader(inputStream);
    LineReader l = new LineReader(input);
    String line = l.readLine();
    while (line != null) {
      String[] entries = line.split("\t");
      Tuple testTuple = tf.newTuple();
      testTuple.append(entries[0]);
      System.out.println(Arrays.asList(entries));