b31907d700c1fe956e4e4c20e64d91de027d7c84 markd Tue May 14 02:03:33 2024 -0700 merge blatHuge implementation diff --git src/inc/gfPcrLib.h src/inc/gfPcrLib.h index efce18d..d5415b8 100644 --- src/inc/gfPcrLib.h +++ src/inc/gfPcrLib.h @@ -1,20 +1,21 @@ /* gfPcrLib - Routines to help do in silico PCR. * Copyright 2004 Jim Kent. All rights reserved. */ #ifndef GFPCRLIB_H #define GFPCRLIB_H +struct gfConnection; struct gfPcrInput /* Info for input to one PCR experiment. */ { struct gfPcrInput *next; /* Next in singly linked list. */ char *name; /* Name of experiment */ char *fPrimer; /* Forward primer - 15-30 bases */ char *rPrimer; /* Reverse primer - after fPrimer and on opposite strand */ }; void gfPcrInputStaticLoad(char **row, struct gfPcrInput *ret); /* Load a row from gfPcrInput table into ret. The contents of ret will * be replaced at the next call to this function. */ struct gfPcrInput *gfPcrInputLoad(char **row);