98f0b8d7122c237cc61b5a5c3c1a3ff61e4f3b8b kent Tue Dec 3 19:34:37 2013 -0800 Actually using seed. diff --git src/utils/fastqStatsAndSubsample/fastqStatsAndSubsample.c src/utils/fastqStatsAndSubsample/fastqStatsAndSubsample.c index 64f5745..afcda73 100644 --- src/utils/fastqStatsAndSubsample/fastqStatsAndSubsample.c +++ src/utils/fastqStatsAndSubsample/fastqStatsAndSubsample.c @@ -550,19 +550,20 @@ printAveIntArray(f, "cAtPos", cCount, totalAtPos, posCount); printAveIntArray(f, "gAtPos", gCount, totalAtPos, posCount); printAveIntArray(f, "tAtPos", tCount, totalAtPos, posCount); printAveIntArray(f, "nAtPos", nCount, totalAtPos, posCount); } int main(int argc, char *argv[]) /* Process command line. */ { optionInit(&argc, argv, options); if (argc != 4) usage(); sampleSize = optionInt("sampleSize", sampleSize); seed = optionInt("seed", seed); +srand(seed); smallOk = optionExists("smallOk"); fastqStatsAndSubsample(argv[1], argv[2], argv[3]); return 0; }