a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/lib/ggDbIo.c src/hg/lib/ggDbIo.c index 464a2e0..5b27fa9 100644 --- src/hg/lib/ggDbIo.c +++ src/hg/lib/ggDbIo.c @@ -1,26 +1,25 @@ /***************************************************************************** * Copyright (C) 2000 Jim Kent. This source code may be freely used * * for personal, academic, and non-profit purposes. Commercial use * * permitted only by explicit agreement with Jim Kent (jim_kent@pacbell.net) * *****************************************************************************/ /* ggDbIo.c - Load and save to database format (as an altGraph table in mySQL). */ #include "common.h" #include "altGraph.h" #include "geneGraph.h" -static char const rcsid[] = "$Id: ggDbIo.c,v 1.5 2005/04/13 06:25:53 markd Exp $"; void ggTabOut(struct geneGraph *gg, FILE *f) /* Convert into database format and save as line in tab-delimited file. */ { struct altGraph *ag; ag = ggToAltGraph(gg); altGraphTabOut(ag, f); altGraphFree(&ag); } struct geneGraph *ggFromAltGraph(struct altGraph *ag) /* Convert gene graph from database representation to