a94512d116a2da4614b3115ed210101f30fbbbd2 braney Mon Jan 23 12:39:13 2017 -0800 make max length of chromosome name be 255 instead of 32. diff --git src/hg/inc/hdb.h src/hg/inc/hdb.h index 5cdbd62..01f050d 100644 --- src/hg/inc/hdb.h +++ src/hg/inc/hdb.h @@ -31,31 +31,31 @@ #endif #ifndef BED_H #include "bed.h" #endif #ifndef CUSTOMTRACK_H #include "customTrack.h" #endif struct chromInfo; /* At or below this number of sequences, allow split tables: */ #define HDB_MAX_SEQS_FOR_SPLIT 100 /* Statically-allocated string lengths (max supported len incl. final \0): */ -#define HDB_MAX_CHROM_STRING 32 +#define HDB_MAX_CHROM_STRING 255 #define HDB_MAX_BAND_STRING 64 #define HDB_MAX_FIELD_STRING 32 #define HDB_MAX_TABLE_STRING 128 #define HDB_MAX_PATH_STRING 512 struct blatServerTable /* Information about a BLAT server. */ { char *db; /* Database name. */ char *genome; /* Genome name. */ boolean isTrans; /* Is tranlated to protein? */ char *host; /* Name of machine hosting server. */ char *port; /* Port that hosts server. */ char *nibDir; /* Directory of sequence files. */