Read groups are now sorted in the output data, for convenience
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1129 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
fe421e5712
commit
9fca79ed62
|
|
@ -205,7 +205,7 @@ public class CovariateCounterWalker extends LocusWalker<Integer, PrintStream> {
|
|||
printInfo(recalTableStream);
|
||||
|
||||
recalTableStream.println("rg,pos,Qrep,dn,nBases,nMismatches,Qemp");
|
||||
for (String readGroup : covariateCounter.getReadGroups()) {
|
||||
for (String readGroup : new TreeSet<String>(covariateCounter.getReadGroups()) ) {
|
||||
for ( RecalData datum: RecalData.sort(covariateCounter.getRecalData(readGroup)) ) {
|
||||
if ( datum.N > 0 )
|
||||
recalTableStream.format("%s%n", datum.toCSVString(collapsePos));
|
||||
|
|
|
|||
Loading…
Reference in New Issue