Examples of formatPercentage()


Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                            + " / " + sdf.formatPercentage(getSelectedRegionsPercentage()));


            globalsInRegions.addRow("Mapped reads",
                    sdf.formatLong(numMappedReadsInRegions)
                            + "  /  " + sdf.formatPercentage(percentageMappedReadsInRegions));
            if (numPairedReads > 0) {
                globalsInRegions.addRow("Mapped reads, only first in pair",
                        sdf.formatLong(numMappedFirstOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedFirstOfPairInRegions));
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                    sdf.formatLong(numMappedReadsInRegions)
                            + "  /  " + sdf.formatPercentage(percentageMappedReadsInRegions));
            if (numPairedReads > 0) {
                globalsInRegions.addRow("Mapped reads, only first in pair",
                        sdf.formatLong(numMappedFirstOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedFirstOfPairInRegions));

                globalsInRegions.addRow("Mapped reads, only second in pair",
                        sdf.formatLong(numMappedSecondOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedSecondOfPairInRegions));
                globalsInRegions.addRow("Mapped reads, both in pair",
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                        sdf.formatLong(numMappedFirstOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedFirstOfPairInRegions));

                globalsInRegions.addRow("Mapped reads, only second in pair",
                        sdf.formatLong(numMappedSecondOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedSecondOfPairInRegions));
                globalsInRegions.addRow("Mapped reads, both in pair",
                                   sdf.formatLong(numPairedReadsInRegions - numSingletonsInRegions) + " / "
                                        + sdf.formatPercentage((getPercentageBothMatesPairedInRegions())));
                globalsInRegions.addRow("Mapped reads, singletons",
                        sdf.formatLong(numSingletonsInRegions) + " / "
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                globalsInRegions.addRow("Mapped reads, only second in pair",
                        sdf.formatLong(numMappedSecondOfPairInRegions) + " / " +
                                sdf.formatPercentage(percentageOfMappedSecondOfPairInRegions));
                globalsInRegions.addRow("Mapped reads, both in pair",
                                   sdf.formatLong(numPairedReadsInRegions - numSingletonsInRegions) + " / "
                                        + sdf.formatPercentage((getPercentageBothMatesPairedInRegions())));
                globalsInRegions.addRow("Mapped reads, singletons",
                        sdf.formatLong(numSingletonsInRegions) + " / "
                                + sdf.formatPercentage(percentageSingletonsInRegions));

View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                globalsInRegions.addRow("Mapped reads, both in pair",
                                   sdf.formatLong(numPairedReadsInRegions - numSingletonsInRegions) + " / "
                                        + sdf.formatPercentage((getPercentageBothMatesPairedInRegions())));
                globalsInRegions.addRow("Mapped reads, singletons",
                        sdf.formatLong(numSingletonsInRegions) + " / "
                                + sdf.formatPercentage(percentageSingletonsInRegions));


                globalsInRegions.addRow("Correct strand reads",
                        sdf.formatLong(numCorrectStrandReads) + " / " +
                        sdf.formatPercentage(percentageCorrectStrandReads) );
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                                + sdf.formatPercentage(percentageSingletonsInRegions));


                globalsInRegions.addRow("Correct strand reads",
                        sdf.formatLong(numCorrectStrandReads) + " / " +
                        sdf.formatPercentage(percentageCorrectStrandReads) );


                globalsInRegions.addRow("Clipped reads",
                                    sdf.formatInteger(numClippedReads) + " / " +
                                    sdf.formatPercentage(getPercentageClippedReads()));
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

                        sdf.formatPercentage(percentageCorrectStrandReads) );


                globalsInRegions.addRow("Clipped reads",
                                    sdf.formatInteger(numClippedReads) + " / " +
                                    sdf.formatPercentage(getPercentageClippedReads()));
                globalsInRegions.addRow("Duplication rate", sdf.formatPercentage(duplicationRate));

            }

            summaryStatsKeeper.addSection(globalsInRegions);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()


                globalsInRegions.addRow("Clipped reads",
                                    sdf.formatInteger(numClippedReads) + " / " +
                                    sdf.formatPercentage(getPercentageClippedReads()));
                globalsInRegions.addRow("Duplication rate", sdf.formatPercentage(duplicationRate));

            }

            summaryStatsKeeper.addSection(globalsInRegions);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

        }

        StatsKeeper.Section acgtContent = new StatsKeeper.Section("ACGT Content" + postfix);

        acgtContent.addRow("Number/percentage of A's", sdf.formatLong(getaNumber()) +
                " / " + sdf.formatPercentage(getaPercent()));
    acgtContent.addRow("Number/percentage of C's",sdf.formatLong(getcNumber()) +
                " / " + sdf.formatPercentage(getcPercent()));
    acgtContent.addRow("Number/percentage of T's", sdf.formatLong(gettNumber()) +
                " / " + sdf.formatPercentage(gettPercent()));
    acgtContent.addRow("Number/percentage of G's",sdf.formatLong(getgNumber()) +
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.utils.StringUtilsSwing.formatPercentage()

        StatsKeeper.Section acgtContent = new StatsKeeper.Section("ACGT Content" + postfix);

        acgtContent.addRow("Number/percentage of A's", sdf.formatLong(getaNumber()) +
                " / " + sdf.formatPercentage(getaPercent()));
    acgtContent.addRow("Number/percentage of C's",sdf.formatLong(getcNumber()) +
                " / " + sdf.formatPercentage(getcPercent()));
    acgtContent.addRow("Number/percentage of T's", sdf.formatLong(gettNumber()) +
                " / " + sdf.formatPercentage(gettPercent()));
    acgtContent.addRow("Number/percentage of G's",sdf.formatLong(getgNumber()) +
                " / " + sdf.formatPercentage(getgPercent()));
    acgtContent.addRow("Number/percentage of N's",sdf.formatLong(getnNumber()) +
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.