dstFile.readFile();
if (!DBFile.haveReadFile)
DBFile.readFile();
if (dstFile.chunks.size() == 0)
throw new ParserException(dstFile.filename, "No chunks found");
if (DBFile.chunks.size() == 0)
throw new ParserException(DBFile.filename, "No chunks found");
// What if features don't match
if (!dstFile.isCompatibleWith(DBFile))
throw new ParserException(DBFile.filename,
"Features do not match those in " + dstFile.filename);
dstFile = (FeatFile) dstFile.clone();
dstFile.normalizeFeatures();
dstFile.applyFeatureWeights();