Package org.broadinstitute.gatk.utils.recalibration

Examples of org.broadinstitute.gatk.utils.recalibration.RecalibrationReport


     */
    @Requires("reportFileMap != null")
    private Map<String, RecalibrationReport> buildReportMap(final Map<String, File> reportFileMap) {
        final Map<String,RecalibrationReport> reports = new LinkedHashMap<>(reportFileMap.size());
        for (final Map.Entry<String,File> e : reportFileMap.entrySet()) {
            reports.put(e.getKey(),new RecalibrationReport(e.getValue()));
        }
        return reports;
    }
View Full Code Here


                    logger.info("  " + readGroup);
                }
            }
        }

        RecalibrationReport generalReport = null;
        for (File input : inputs) {
            final RecalibrationReport inputReport = new RecalibrationReport(input, allReadGroups);
            if( inputReport.isEmpty() ) { continue; }

            if (generalReport == null)
                generalReport = inputReport;
            else
                generalReport.combine(inputReport);
View Full Code Here

TOP

Related Classes of org.broadinstitute.gatk.utils.recalibration.RecalibrationReport

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.