src/blat/blat.c 1.115
1.115 2009/10/09 19:35:06 kent
Making sure stepSize is initialized
Index: src/blat/blat.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/blat/blat.c,v
retrieving revision 1.114
retrieving revision 1.115
diff -b -B -U 4 -r1.114 -r1.115
--- src/blat/blat.c 8 Oct 2009 18:09:38 -0000 1.114
+++ src/blat/blat.c 9 Oct 2009 19:35:06 -0000 1.115
@@ -701,9 +701,9 @@
/* Get tile size and related parameters from user and make sure
* they are within range. */
tileSize = optionInt("tileSize", tileSize);
-stepSize = optionInt("stepSize", stepSize);
+stepSize = optionInt("stepSize", tileSize);
minMatch = optionInt("minMatch", minMatch);
oneOff = optionExists("oneOff");
fastMap = optionExists("fastMap");
minScore = optionInt("minScore", minScore);