Mac binaries
[jabaws.git] / website / archive / binaries / mac / src / iupred / getquery.h
diff --git a/website/archive/binaries/mac/src/iupred/getquery.h b/website/archive/binaries/mac/src/iupred/getquery.h
new file mode 100644 (file)
index 0000000..7668552
--- /dev/null
@@ -0,0 +1,20 @@
+#include <stdlib.h>\r
+#include <stdio.h>\r
+#include <string.h>\r
+#include <ctype.h>\r
+\r
+#include "gjutil.h"\r
+\r
+/* Standard structure for storing protein sequence data */\r
+\r
+typedef struct seqdat {        /* all lengths include char terminator and [0] */\r
+    char *id;  /* identifier */\r
+    int ilen;\r
+    char *title;/* title */\r
+    int tlen;\r
+    int slen;  /* length of sequence*/\r
+    char *seq; /* sequence */\r
+}SEQS;\r
+\r
+\r
+SEQS *gseq_fasta(FILE *seqfile);\r