c5d2c70c02d3cd9d79b2db8347c917dcab791b11
angie
Mon Apr 4 16:32:01 2011 -0700
Track #1684 (SNPs 132 (dbSNP)): De-emphasizing dbSNP's "clinically-associated" flag as suggested by Brooke.
diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c
index d253d14..f14b65b 100644
--- src/hg/hgc/hgc.c
+++ src/hg/hgc/hgc.c
@@ -16520,39 +16520,39 @@
}
printf("\n");
if (gotNonIntN)
printf(" Note: dbSNP extrapolates allele counts from reported frequencies and "
"reported 2N sample sizes (total %d); non-integer allele count may imply "
"an inaccuracy in one of the reported numbers.
\n", total2N);
}
else
puts("");
if (isNotEmpty(snp->bitfields) && differentString(snp->bitfields, "unknown"))
{
printf("
Miscellaneous properties annotated by dbSNP:"
"\n\n");
struct slName *bitfields = slNameListFromComma(snp->bitfields);
if (slNameInList(bitfields, "clinically-assoc"))
- printf("
***clinically associated*** "
- "(SNP is in OMIM/OMIA and/or "
- "at least one submitter is a Locus-Specific Database)\n");
+ printf("
SNP is in OMIM/OMIA and/or "
+ "at least one submitter is a Locus-Specific Database "
+ "("clinically associated")\n");
if (slNameInList(bitfields, "has-omim-omia"))
printf("
SNP is in OMIM/OMIA\n");
if (slNameInList(bitfields, "microattr-tpa"))
printf("
SNP has a microattribution or third-party annotation\n");
if (slNameInList(bitfields, "submitted-by-lsdb"))
- printf("
SNP was submitted by LSDB\n");
+ printf("
SNP was submitted by Locus-Specific Database\n");
if (slNameInList(bitfields, "maf-5-all-pops"))
printf("
Minor Allele Frequency is at least 5%% in all "
"populations assayed\n");
else if (slNameInList(bitfields, "maf-5-some-pop"))
printf("
Minor Allele Frequency is at least 5%% in at least one "
"population assayed\n");
if (slNameInList(bitfields, "genotype-conflict"))
printf("
Quality check: Different genotypes have been submitted "
"for the same individual\n");
if (slNameInList(bitfields, "rs-cluster-nonoverlapping-alleles"))
printf("
Quality check: The reference SNP cluster contains "
"submitted SNPs with non-overlapping alleles\n");
if (slNameInList(bitfields, "observed-mismatch"))
printf("
Quality check: The reference sequence allele at the "
"mapped position is not present in the SNP allele list\n");