Package org.broad.igv.session

Examples of org.broad.igv.session.SessionWriter


     * @throws IOException
     */
    public static void saveSession(IGV igv, File targetFile) throws IOException{
        Session currentSession = igv.getSession();
        currentSession.setPath(targetFile.getAbsolutePath());
        (new SessionWriter()).saveSession(currentSession, targetFile);
    }
View Full Code Here


            FileOutputStream out = null;
            token = WaitCursorManager.showWaitCursor();

            Session currentSession = mainFrame.getSession();
            currentSession.setPath(sessionFile.getAbsolutePath());
            (new SessionWriter()).saveSession(currentSession, sessionFile);

            DMUtils.uploadFile(sessionFile, gsPath);

            sessionFile.delete();
View Full Code Here

TOP

Related Classes of org.broad.igv.session.SessionWriter

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.