Don't print if not in learning mode

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1389 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
ebanks 2009-08-07 06:08:02 +00:00
parent 4c1fa52ddf
commit db250f8d3e
1 changed files with 2 additions and 1 deletions

View File

@ -132,7 +132,8 @@ public class VariantFiltrationWalker extends LocusWalker<Integer, Integer> {
}
}
swriters.get(STUDY_NAME).print("inDbSNP\tinHapMap\tisHet\n");
if (LEARNING)
swriters.get(STUDY_NAME).print("inDbSNP\tinHapMap\tisHet\n");
} catch (FileNotFoundException e) {
throw new StingException(String.format("Could not open file(s) for writing"));
}