Package bnGUI.venn.db

Examples of bnGUI.venn.db.ListReaderModel


     */
    public IVennDataModel loadFromListFile(String listFileName)
        throws IOException, FileFormatException
    {
        lastWorkingPath = listFileName;
        ListReaderModel reader = new ListReaderModel();
        reader.loadFromFile(listFileName);
        reader.show();
        fileName = new File(listFileName).getName();
        sourceType = SourceType.LIST;
        sourceDataModel = reader;
        return reader;
    }
View Full Code Here


            //model.loadFromFile("examples/Bach_GO-Categorylist.txt","examples/Bach_GO-Genelist.txt",geneFilter);
            model.loadFromFile("examples/1b-2 hoch summary.txt","examples/1b-2 hoch genes.txt",geneFilter);
        }
        */
        try {
            model = new ListReaderModel();
            model.loadFromFile("examples/VennDataSplitterTest.list");
        }
        catch (FileFormatException e)
        {
            e.printStackTrace();
View Full Code Here

TOP

Related Classes of bnGUI.venn.db.ListReaderModel

Copyright © 2018 www.massapicom. 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.