cd4e52d9e00869982dcc66cd3736c8b70ef95dcb
mspeir
Fri Jul 18 10:41:41 2014 -0700
Remove unnecessary else statement from genomicSuperDups section, refs #13171
diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index e6932cf..70a46ed 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -18987,31 +18987,31 @@
printf(""
"View DNA for other position
\n",
hgcPathAndSettings(), dup.otherStart, dup.otherEnd, "",
dup.otherChrom, dup.otherStart, dup.otherEnd, dup.strand,
database, tdb->track);
printf("Other Position Relative Orientation:%s
\n",
dup.strand);
if(sameString("canFam1", database))
{
printf("Filter Verdict: %s
\n", dup.verdict);
printf(" testResult:%s
\n", dup.testResult);
printf(" chits:%s
\n", dup.chits);
printf(" ccov:%s
\n", dup.ccov);
printf(" posBasesHit:%d
\n",
dup.posBasesHit);
- } else {};
+ }
if (alignUrl != NULL)
printf("Optimal Global Alignment
\n",
alignUrl, dup.alignfile, dup.chrom,
dup.chromStart, dup.chromEnd);
printf("Alignment Length: %d
\n", dup.alignL);
printf(" Indels #: %d
\n", dup.indelN);
printf(" Indels bp: %d
\n", dup.indelS);
printf(" Aligned Bases: %d
\n", dup.alignB);
printf(" Matching bases: %d
\n",
dup.matchB);
printf(" Mismatched bases: %d
\n",
dup.mismatchB);
printf(" Transitions: %d
\n",
dup.transitionsB);