bug fixes

This commit is contained in:
Guillermo del Angel 2011-07-04 20:33:59 -04:00
parent 08bc843d4c
commit 7a04872a3f
1 changed files with 3 additions and 1 deletions

View File

@ -246,8 +246,10 @@ public class SelectVariants extends RodWalker<Integer, Integer> {
afBoosts = new ArrayList<Double>();
logger.info("Reading in AF boost table...");
for ( final String line : new XReadLines( AF_FILE ) ) {
System.out.println(line);
//System.out.println(line);
final String[] vals = line.split("\t");
if (vals[0].matches("midpoints"))
continue;
double bkp = Double.valueOf(vals[0]);
double afb = Double.valueOf(vals[1]);
afBreakpoints.add(bkp);