spaces!!!!!!!!!
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@814 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
c2df35b7fe
commit
149cc9989b
|
|
@ -51,7 +51,6 @@ public class CovariateCounterWalker extends LocusWalker<Integer, Integer> {
|
|||
|
||||
String dinuc_root = "dinuc";
|
||||
ArrayList<PrintStream> dinuc_outs = new ArrayList<PrintStream>();
|
||||
PrintStream covars_out = new PrintStream("covars.out");
|
||||
PrintStream ByQualFile; // = new PrintStream("quality_empirical_vs_observed.csv");
|
||||
PrintStream ByCycleFile;
|
||||
PrintStream ByDinucFile;
|
||||
|
|
@ -155,11 +154,17 @@ public class CovariateCounterWalker extends LocusWalker<Integer, Integer> {
|
|||
}
|
||||
|
||||
public void onTraversalDone(Integer result) {
|
||||
PrintStream covars_out;
|
||||
try {
|
||||
covars_out = new PrintStream(OUTPUT_FILEROOT+".covars.out");
|
||||
if (flattenData.size() > 0)
|
||||
covars_out.println(flattenData.get(0).headerString());
|
||||
for ( RecalData datum : flattenData ) {
|
||||
covars_out.println(datum);
|
||||
}
|
||||
} catch (FileNotFoundException e) {
|
||||
System.err.println("FileNotFoundException: " + e.getMessage());
|
||||
}
|
||||
|
||||
qualityEmpiricalObserved();
|
||||
qualityDiffVsCycle();
|
||||
|
|
|
|||
Loading…
Reference in New Issue