proteome/peptide_list.h
00001
00002 #ifndef _PEPTIDE_LIST_H_
00003 #define _PEPTIDE_LIST_H_
00004
00005 struct PeptideLink
00006 {
00007 struct Peptide* pt;
00008 Score sc;
00009 struct PeptideLink* next;
00010 };
00011
00012 typedef struct PeptideLink PeptideLink;
00013 typedef PeptideLink* PeptideList;
00014
00015 PeptideList pushPeptideList(PeptideList q, Peptide* pt, Score sc);
00016 void fprintPeptideLink(FILE* fp, PeptideLink* pl);
00017 void fprintPeptideList(FILE* fp, PeptideList q);
00018
00019 #endif
00020
Generated on Sun Feb 13 01:06:00 2005 for MapQuant by
1.3.7