a44421a79fb36cc2036fe116b97ea3bc9590cd0c braney Fri Dec 2 09:34:39 2011 -0800 removed rcsid (#295) diff --git src/hg/hgTracks/makeItemsTrack.c src/hg/hgTracks/makeItemsTrack.c index 41e8a8c..faeb5b2 100644 --- src/hg/hgTracks/makeItemsTrack.c +++ src/hg/hgTracks/makeItemsTrack.c @@ -1,29 +1,28 @@ /* makeItemsTrack.c - supports tracks of type makeItems. Users can drag to create an item * and click to edit one. */ #include "common.h" #include "hash.h" #include "linefile.h" #include "jksql.h" #include "hdb.h" #include "hgTracks.h" #include "bed.h" #include "binRange.h" #include "makeItemsItem.h" -static char const rcsid[] = "$Id: makeItemsTrack.c,v 1.11 2010/05/11 01:43:28 kent Exp $"; void makeItemsJsCommand(char *command, struct track *trackList, struct hash *trackHash) /* Execute some command sent to us from the javaScript. All we know for sure is that * the first word of the command is "makeItems." We expect it to be of format: * makeItems <trackName> <chrom> <chromStart> <chromEnd> * If it is indeed of this form then we'll create a new makeItemsItem that references this * location and stick it in the named track. */ { /* Parse out command into local variables. */ char *words[6]; char *dupeCommand = cloneString(command); /* For parsing. */ int wordCount = chopLine(dupeCommand, words); if (wordCount != 5) errAbort("Expecting %d words in jsCommand '%s'", wordCount, command); char *trackName = words[1];