src/hg/hgTracks/mafTrack.h 1.8

1.8 2009/08/20 16:58:41 braney
change summary view to start after 50K rather than 1mb.
Index: src/hg/hgTracks/mafTrack.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTracks/mafTrack.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 1000000 -r1.7 -r1.8
--- src/hg/hgTracks/mafTrack.h	31 May 2008 14:16:49 -0000	1.7
+++ src/hg/hgTracks/mafTrack.h	20 Aug 2009 16:58:41 -0000	1.8
@@ -1,34 +1,34 @@
 /* mafTrack.h - MAF track display */
 
 #ifndef MAFTRACK_H
 #define MAFTRACK_H
 
 #ifndef MAF_H
 #include "maf.h"
 #endif
 
 struct mafPriv
 {
 void *list;
 struct customTrack *ct;
 };
 
 struct mafPriv *getMafPriv(struct track *track);
 
 /* zoom level where summary file is used */
-#define MAF_SUMMARY_VIEW 1000000
+#define MAF_SUMMARY_VIEW 50000
 
 /* zoom level that displays synteny breaks and nesting brackets */
 #define MAF_DETAIL_VIEW 30000
 
 void drawMafRegionDetails(struct mafAli *mafList, int height,
         int seqStart, int seqEnd, struct hvGfx *hvg, int xOff, int yOff,
         int width, MgFont *font, Color color, Color altColor,
         enum trackVisibility vis, boolean isAxt, boolean chainBreaks);
 /* Draw wiggle/density plot based on scoring things on the fly. */
 
 void drawMafChain(struct hvGfx *hvg, int xOff, int yOff, int width, int height,
                         boolean isDouble);
 /* draw single or double chain line between alignments in MAF display */
 
 #endif