Package data.cerevisiae.ranjan2013swr1

Source Code of data.cerevisiae.ranjan2013swr1.JoinTable1

/*
* 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.ranjan2013swr1;

import fork.lib.base.file.management.Dirs;
import java.io.File;
import data.cerevisiae.inhouse.jointable.JoinTable;

/**
*
* @author man-mqbpjmg4
*/
public class JoinTable1 extends JoinTable{
   
   
   
public static void main(String[] args) throws Exception { //debug
    File dir= Dirs.getFile("dir");
    File ref= new File(dir+"/anno/xu_2009_orfs.bed");
    File d= new File(dir+"/other_datasets\\ranjan2013_swr1-chip\\score");
   
    JoinTable jj= new JoinTable();
    jj.initRows(ref);
   
   
    jj.addBedFile(new File(d+"/swr1-chip_wt/swr1-chip_wt_sacCer1-xu_gene_five_0.150.bed"));
    jj.addBedFile(new File(d+"/swr1-chip_wt/swr1-chip_wt_sacCer1-xu_gene_three_150.0.bed"));
    jj.addBedFile(new File(d+"/swr1-chip_htz1d/swr1-chip_htz1d_sacCer1-xu_gene_five_0.150.bed"));
    jj.addBedFile(new File(d+"/swr1-chip_htz1d/swr1-chip_htz1d_sacCer1-xu_gene_three_150.0.bed"));
    jj.addBedFile(new File(d+"/swr1-chip_wt/swr1-chip_wt_sacCer1-xu_gene_five_150.0.bed"));
    jj.addBedFile(new File(d+"/swr1-chip_htz1d/swr1-chip_htz1d_sacCer1-xu_gene_five_150.0.bed"));
   
   
    jj.writeToFile(new File(d+"/combine.txt"));
   
   
}
   
   
   
}

TOP

Related Classes of data.cerevisiae.ranjan2013swr1.JoinTable1

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.