src/inc/obscure.h 1.35

1.35 2009/12/01 05:34:02 kent
Adding rangeFromMinMaxMeanStd
Index: src/inc/obscure.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/inc/obscure.h,v
retrieving revision 1.34
retrieving revision 1.35
diff -b -B -U 4 -r1.34 -r1.35
--- src/inc/obscure.h	25 Nov 2009 07:16:38 -0000	1.34
+++ src/inc/obscure.h	1 Dec 2009 05:34:02 -0000	1.35
@@ -157,5 +157,10 @@
 void rangeRoundUp(double start, double end, double *retStart, double *retEnd);
 /* Round start and end so that they cover a slightly bigger range, but with more round
  * numbers.  For instance 0.23:9.89 becomes 0:10 */
 
+void rangeFromMinMaxMeanStd(double minVal, double maxVal, double mean, double std,
+	double *retStart, double *retEnd);
+/* Given some basic statistical properties, set a range that will be good on a wide
+ * range of biological data. */
+
 #endif /* OBSCURE_H */