Removing printf's used for debugging -- they have served their purpose.
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@5906 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
0aef5c0074
commit
c50d290133
|
|
@ -188,8 +188,8 @@ public class GenomeAnalysisEngine {
|
||||||
private static Random randomGenerator = new Random(GATK_RANDOM_SEED);
|
private static Random randomGenerator = new Random(GATK_RANDOM_SEED);
|
||||||
|
|
||||||
public static Random getRandomGenerator() { return randomGenerator; }
|
public static Random getRandomGenerator() { return randomGenerator; }
|
||||||
public static void resetRandomGenerator() { System.out.printf("Reset random seed to %d\n", GATK_RANDOM_SEED); randomGenerator.setSeed(GATK_RANDOM_SEED); }
|
public static void resetRandomGenerator() { randomGenerator.setSeed(GATK_RANDOM_SEED); }
|
||||||
public static void resetRandomGenerator(long seed) { System.out.printf("Reset random seed to %d\n", seed); randomGenerator.setSeed(seed); }
|
public static void resetRandomGenerator(long seed) { randomGenerator.setSeed(seed); }
|
||||||
/**
|
/**
|
||||||
* Actually run the GATK with the specified walker.
|
* Actually run the GATK with the specified walker.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue