logger.info -> logger.debug (don't want to risk filling up my log on genome-wide calls)
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1792 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
df8ea8f437
commit
15bf014e0b
|
|
@ -781,8 +781,8 @@ public class IndelGenotyperWalker extends ReadWalker<Integer,Integer> {
|
|||
if ( type == null ) continue; // element was not an indel, go grab next element...
|
||||
|
||||
// we got an indel if we are here...
|
||||
if ( i == 0 ) logger.warn("Indel at the start of the read "+r.getReadName());
|
||||
if ( i == nCigarElems - 1) logger.warn("Indel at the end of the read "+r.getReadName());
|
||||
if ( i == 0 ) logger.debug("Indel at the start of the read "+r.getReadName());
|
||||
if ( i == nCigarElems - 1) logger.debug("Indel at the end of the read "+r.getReadName());
|
||||
|
||||
try {
|
||||
// note that here we will be assigning indels to the first deleted base or to the first
|
||||
|
|
|
|||
Loading…
Reference in New Issue