Multiply fractionRandom by 100.0 so that the line that indicates the percentage of variants that will be output says (for instance) 90%, not 0.9%

This commit is contained in:
Kiran V Garimella 2011-07-22 11:54:59 -04:00
parent 623143454b
commit b8a0fd2a8d
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ public class SelectVariants extends RodWalker<Integer, Integer> {
}
SELECT_RANDOM_FRACTION = fractionRandom > 0;
if (SELECT_RANDOM_FRACTION) logger.info("Selecting approximately " + fractionRandom + "% of the variants at random from the variant track");
if (SELECT_RANDOM_FRACTION) logger.info("Selecting approximately " + 100.0*fractionRandom + "% of the variants at random from the variant track");
if (KEEP_AF_SPECTRUM) {