Don't print debugging output.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@4799 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
c91712bd59
commit
bc885b7bd0
|
|
@ -243,7 +243,7 @@ public class SAMFileWriterStub implements Stub<SAMFileWriter>, StingSAMFileWrite
|
||||||
*/
|
*/
|
||||||
public void addAlignment( SAMRecord alignment ) {
|
public void addAlignment( SAMRecord alignment ) {
|
||||||
if ( engine.getArguments().BAQMode != BAQ.CalculationMode.NONE && engine.getWalkerBAQApplicationTime() == BAQ.ApplicationTime.ON_OUTPUT ) {
|
if ( engine.getArguments().BAQMode != BAQ.CalculationMode.NONE && engine.getWalkerBAQApplicationTime() == BAQ.ApplicationTime.ON_OUTPUT ) {
|
||||||
System.out.printf("Writing BAQ at OUTPUT TIME%n");
|
//System.out.printf("Writing BAQ at OUTPUT TIME%n");
|
||||||
baqHMM.baqRead(alignment, engine.getReferenceDataSource().getReference(), engine.getArguments().BAQMode, engine.getWalkerBAQQualityMode());
|
baqHMM.baqRead(alignment, engine.getReferenceDataSource().getReference(), engine.getArguments().BAQMode, engine.getWalkerBAQQualityMode());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ public class BAQSamIterator implements StingSAMIterator {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SAMRecord next() {
|
public SAMRecord next() {
|
||||||
System.out.printf("BAQing during input%n");
|
//System.out.printf("BAQing during input%n");
|
||||||
SAMRecord read = it.next();
|
SAMRecord read = it.next();
|
||||||
baqHMM.baqRead(read, refReader, cmode, qmode);
|
baqHMM.baqRead(read, refReader, cmode, qmode);
|
||||||
return read;
|
return read;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue