src/hg/instinct/bioInt2/bioController.h 1.2

1.2 2009/03/21 21:31:54 jsanborn
moved stuff around
Index: src/hg/instinct/bioInt2/bioController.h
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/instinct/bioInt2/bioController.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -b -B -U 1000000 -r1.1 -r1.2
--- src/hg/instinct/bioInt2/bioController.h	20 Mar 2009 06:06:31 -0000	1.1
+++ src/hg/instinct/bioInt2/bioController.h	21 Mar 2009 21:31:54 -0000	1.2
@@ -1,34 +1,37 @@
 /* bioController.h 
  * All rights reserved -- J. Zachary Sanborn
  */
 
 #ifndef BIOCONTROLLER_H
 #define BIOCONTROLLER_H 
 
 #include "common.h"
 #include "bioIntDb.h"
 
 
 struct biAnalysis {
     struct biAnalysis *next;
     char *db;
     char *tableName;
     struct hash *parameters;
 
     struct analysisResult *(*analyze)(struct biAnalysis *ba, struct slPair *spList, 
 				     char *sample, char *gene);
 }; 
 
 struct analysisResult {
     struct analysisResult *next;
     char *sample;
     char *feature;
 
     double val;
     double conf;
 };
 
 
 struct biAnalysis *registerGeneLevelAnalyses(char *db, struct slName *datasets);
 
+void runAnalysisPipeline(char *db, char *datasets, struct biAnalysis *baList);
+
+
 #endif /* BIOCONTROLLER_H */