Trivial output changes for consistency
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@3128 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
058e7d3d12
commit
e7dad728df
|
|
@ -141,11 +141,11 @@ public class VariantAnnotatorEngine {
|
|||
for ( GenotypeAnnotation annotation : requestedGenotypeAnnotations )
|
||||
descriptions.add(annotation.getDescription());
|
||||
if ( annotateDbsnp )
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.DBSNP_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "dbSNP membership"));
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.DBSNP_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "dbSNP Membership"));
|
||||
if ( annotateHapmap2 )
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.HAPMAP2_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "Hapmap 2 membership"));
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.HAPMAP2_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "Hapmap 2 Membership"));
|
||||
if ( annotateHapmap3 )
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.HAPMAP3_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "Hapmap 3 membership"));
|
||||
descriptions.add(new VCFInfoHeaderLine(VCFRecord.HAPMAP3_KEY, 1, VCFInfoHeaderLine.INFO_TYPE.Integer, "Hapmap 3 Membership"));
|
||||
|
||||
return descriptions;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -587,6 +587,7 @@ public class IndelRealigner extends ReadWalker<Integer, Integer> {
|
|||
} catch (Exception e) {}
|
||||
}
|
||||
} else {
|
||||
//System.out.println("CLEAN: " + AlignmentUtils.cigarToString(bestConsensus.cigar) + " " + bestConsensus.str.toString() + " " + bestConsensus.cigar.numCigarElements() );
|
||||
//logger.debug("CLEAN: " + AlignmentUtils.cigarToString(bestConsensus.cigar) + " " + bestConsensus.str );
|
||||
if ( indelOutput != null && bestConsensus.cigar.numCigarElements() > 1 ) {
|
||||
// NOTE: indels are printed out in the format specified for the low-coverage pilot1
|
||||
|
|
|
|||
Loading…
Reference in New Issue