src/hg/instinct/raToDb/raToDb.c 1.1
1.1 2010/04/09 18:51:52 jsanborn
initial commit
Index: src/hg/instinct/raToDb/raToDb.c
===================================================================
RCS file: src/hg/instinct/raToDb/raToDb.c
diff -N src/hg/instinct/raToDb/raToDb.c
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ src/hg/instinct/raToDb/raToDb.c 9 Apr 2010 18:51:52 -0000 1.1
@@ -0,0 +1,40 @@
+/* raToDb - RA to database table converter RA to database converter. */
+#include "common.h"
+#include "linefile.h"
+#include "hash.h"
+#include "options.h"
+#include "jksql.h"
+#include "ra.h"
+
+static char const rcsid[] = "$Id$";
+
+void usage()
+/* Explain usage and exit. */
+{
+errAbort(
+ "raToDb - RA to database table converter RA to database converter\n"
+ "usage:\n"
+ " raToDb XXX\n"
+ "options:\n"
+ " -xxx=XXX\n"
+ );
+}
+
+static struct optionSpec options[] = {
+ {NULL, 0},
+};
+
+void raToDb(char *XXX)
+/* raToDb - RA to database table converter RA to database converter. */
+{
+}
+
+int main(int argc, char *argv[])
+/* Process command line. */
+{
+optionInit(&argc, argv, options);
+if (argc != 2)
+ usage();
+raToDb(argv[1]);
+return 0;
+}