src/hg/hgTracks/mafTrack.h 1.9
1.9 2009/11/07 01:36:58 braney
put summary view back to 1000000
Index: src/hg/hgTracks/mafTrack.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTracks/mafTrack.h,v
retrieving revision 1.8
retrieving revision 1.9
diff -b -B -U 1000000 -r1.8 -r1.9
--- src/hg/hgTracks/mafTrack.h 20 Aug 2009 16:58:41 -0000 1.8
+++ src/hg/hgTracks/mafTrack.h 7 Nov 2009 01:36:58 -0000 1.9
@@ -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 50000
+#define MAF_SUMMARY_VIEW 1000000
/* 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