src/webBlat/webBlat.c 1.8

1.8 2009/08/04 00:30:33 galt
changing 60 column display to 50
Index: src/webBlat/webBlat.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/webBlat/webBlat.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -b -B -U 4 -r1.7 -r1.8
--- src/webBlat/webBlat.c	22 Nov 2006 22:29:12 -0000	1.7
+++ src/webBlat/webBlat.c	4 Aug 2009 00:30:33 -0000	1.8
@@ -299,11 +299,11 @@
 
 
 /* Parse out file:seq into file and seq, and load needed part of target seq. */
 parseFileSeq(psl->tName, &tFileName, &tSeqName);
-tStart = psl->tStart - 120;
+tStart = psl->tStart - 100;
 if (tStart < 0) tStart = 0;
-tEnd = psl->tEnd + 120;
+tEnd = psl->tEnd + 100;
 if (tEnd > psl->tSize)
     tEnd = psl->tSize;
 tSeq = readSeqFrag(server->seqDir, tFileName, tSeqName, tStart, tEnd);