f84661314839764efb9dd1a74f23a498357e6716 angie Tue Jun 14 15:07:26 2011 -0700 Bug #4302 (link in table schema for BAM files gives a 404):Fixed broken link to SAM spec, and removed dead code (that had the correct link but is no longer exercised). diff --git src/hg/hgTables/bam.c src/hg/hgTables/bam.c index 053dd91..f1c63b3 100644 --- src/hg/hgTables/bam.c +++ src/hg/hgTables/bam.c @@ -345,31 +345,31 @@ } void showSchemaBam(char *table) /* Show schema on bam. */ { struct sqlConnection *conn = hAllocConn(database); char *fileName = bamFileName(table, conn, NULL); struct asObject *as = bamAsObj(); hPrintf("Database: %s", database); hPrintf("    Primary Table: %s
", table); hPrintf("BAM File: %s", fileName); hPrintf("
\n"); hPrintf("Format description: %s
", as->comment); hPrintf("See the SAM Format Specification for more details
\n", - "http://samtools.sourceforge.net/SAM-1.3.pdf"); + "http://samtools.sourceforge.net/SAM1.pdf"); /* Put up table that describes fields. */ hTableStart(); hPrintf("field"); hPrintf("description "); puts("\n"); struct asColumn *col; int colCount = 0; for (col = as->columnList; col != NULL; col = col->next) { hPrintf("%s", col->name); hPrintf("%s", col->comment); ++colCount; } hTableEnd();