Examples of run()


Examples of org.bioinfo.ngs.qc.qualimap.process.BamStatsAnalysis.run()

            BamQCRegionReporter bamQcReporter = new BamQCRegionReporter(false, true);


            try {
                bamQc.run();
                bamQcReporter.loadReportData(bamQc.getBamStats());
                bamQcReporter.computeChartsBuffers(bamQc.getBamStats(), bamQc.getLocator(), bamQc.isPairedData());
            } catch (Exception e) {
                assertTrue("Error calculating stats. " + e.getMessage(), false);
                e.printStackTrace();
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.process.ComputeCountsTask.run()

                }
            }


            try {
                computeCountsTask.run();
                Map<String,Double> readCounts = computeCountsTask.getReadCounts();

                /*List<String> geneNames = asSortedList(readCounts.keySet());

                for (String key : geneNames) {
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.process.CountsQcAnalysis.run()

            }
        };
        countsAnalysis.setOutputParsingThread(loggerThread);


        countsAnalysis.run();

        logger.println("\nPreparing result report");
        exportResult(resultManager);

        logger.println("Finished");
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.process.EpiAnalysis.run()

            }
        };
        epiAnalysis.setOutputParsingThread(loggerThread);

        try {
            epiAnalysis.run();
        } catch (Exception e) {
            System.err.println("Failed to run analysis\n" + e.getMessage());
            e.printStackTrace();
            System.exit(-1);
        }
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.process.MultisampleBamQcAnalysis.run()

        if (settingsDlg.runBamQcFirst()) {
            multiBamQcAnalysis.setRunBamQcFirst( settingsDlg.getBamQcConfig() );
        }

        try {
            multiBamQcAnalysis.run();
        } catch (Exception e) {
            JOptionPane.showMessageDialog(settingsDlg, "Failed to run multi-sample BAM QC!\n" + e.getMessage(),
                    settingsDlg.getTitle(), JOptionPane.ERROR_MESSAGE);
            settingsDlg.setUiEnabled(true);
            //settingsDlg.resetUi();
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.process.RNASeqQCAnalysis.run()

            String countsPath = settingsDlg.getCountsOutputPath();
            rnaSeqQCAnalysis.setCountsFilePath(countsPath);
        }

        try {
            rnaSeqQCAnalysis.run();
        } catch (Exception e) {
            JOptionPane.showMessageDialog(settingsDlg, "Failed to analyze counts data. " + e.getMessage(),
                    settingsDlg.getTitle(), JOptionPane.ERROR_MESSAGE);
            settingsDlg.setUiEnabled(true);
            return;
View Full Code Here

Examples of org.boris.xlloop.FunctionServer.run()

                });
        cfh.add(fifh);
        fsw.setPauseMillis(1000);
        fsw.start();
        fs.setFunctionHandler(new DebugFunctionHandler(cfh));
        fs.run();
    }

    private static void registerAddin(File f,
            FunctionInformationHandler fifh,
            CompositeFunctionHandler cfh) {
View Full Code Here

Examples of org.broad.igv.batch.BatchRunner.run()

                SwingWorker worker = new SwingWorker() {

                    @Override
                    protected Object doInBackground() throws Exception {
                        bRun.run();
                        return null;
                    }
                };

                worker.execute();
View Full Code Here

Examples of org.broad.igv.dev.api.batch.Command.run()

        List<String> subArgs = Collections.emptyList();
        if (args.size() > 1) subArgs = args.subList(1, args.size());
        try {
            Object ocmmand = RuntimeUtils.loadInstanceForName(cmd, null);
            Command command = (Command) ocmmand;
            return command.run(subArgs);
        } catch (ClassNotFoundException e) {
            return null;
        } catch (Exception e) {
            return e.getMessage();
        }
View Full Code Here

Examples of org.broad.igv.tools.sort.Sorter.run()

        }

        sorter.setMaxRecords(maxRecords);

        try {
            sorter.run();
        } catch (Exception e) {
            e.printStackTrace();
            // Delete output file as its probably corrupt
            if (writeStdOut && outputFile.exists()) {
                outputFile.delete();
View Full Code Here
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.