Package data.cerevisiae.harbison

Source Code of data.cerevisiae.harbison.JoinTableHar

/*
* 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"));
   
   
}
   
   
   

   
   
   
}
TOP

Related Classes of data.cerevisiae.harbison.JoinTableHar

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.