/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package data.cerevisiae.harbison;
import data.cerevisiae.inhouse.jointable.JoinTable;
import fork.lib.base.file.management.Dirs;
import java.io.File;
/**
*
* @author man-mqbpjmg4
*/
public class JoinTableHar{
public static void main(String[] args) throws Exception { //debug
File dir= Dirs.getFile("dir");
File d= new File(dir+"/other_datasets/harbison_2004");
File f= new File(d+"/pvalbygene_forpaper_abbr.txt");
JoinTable jj= new JoinTable();
jj.initRows( new File(dir+"/anno/xu_2009_orfs.bed") );
jj.addTextFileChunk(f);
jj.writeToFile(new File(d+"/combine.txt"));
}
}