00001 #ifndef _MS2MATCH_H_
00002 #define _MS2MATCH_H_
00003
00004 #include "sequest.h"
00005
00006 typedef struct
00007 {
00008 DTAFile* pDTAFiles[MAX_NO_DTA_FILES];
00009 SequestOutputFile* pSequestOutputFiles;
00010 int nSequestOutputFiles;
00011 } MS2Match;
00012
00013 MS2Match* MS2MatchesArray_create(int nSize);
00014
00015 typedef struct
00016 {
00017 int nMS2Scans;
00018 int *pMS2Scans;
00019 unsigned char *pMS2ScanFound;
00020
00021 int nMS2Matches;
00022 MS2Match *pMS2Matches;
00023
00024 } MS2MatchResult;
00025
00026 MS2MatchResult* MS2MatchResultArray_create(int nSize);
00027
00028 #endif
00029
00030