1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218
|
/* alignalign_test.c
* Sun Jul 5 13:42:41 1998
*
* Test driver for P7ViterbiAlignAlignment().
*
* The test is to
* 1) read an alignment and a corresponding HMM
* 2) align the alignment to the HMM to get a master trace
* 3) map the alignment to the HMM to get another master trace
* 4) Test that the two master traces are identical; if not, fail.
* This doesn't have to be true always, but it's true for the
* fn3 test example.
* 5) Get imposed traces for each sequence
* 6) Viterbi align individual seqs to the model;
* compare the imposed trace with the Viterbi trace;
* 7) If an excessive number of individual traces differ from
* those imposed by master, fail.
*
* CVS $Id: alignalign_test.c,v 1.7 2003/10/04 18:26:49 eddy Exp $
*/
#include "config.h"
#include <stdio.h>
#include <string.h>
#include "structs.h"
#include "funcs.h"
#include "globals.h"
#include "squid.h"
static char banner[] = "\
alignalign_test : testing of P7ViterbiAlignAlignment() code";
static char usage[] = "\
Usage: alignalign_test [-options]\n\
Available options are:\n\
-h : help; display this usage info\n\
-v : be verbose\n\
";
static char experts[] = "\
--ali <f> : read alignment from <f>\n\
--hmm <f> : read HMM from <f>\n\
\n";
static struct opt_s OPTIONS[] = {
{ "-h", TRUE, sqdARG_NONE },
{ "-v", TRUE, sqdARG_NONE },
{ "--ali", FALSE, sqdARG_STRING },
{ "--hmm", FALSE, sqdARG_STRING },
};
#define NOPTIONS (sizeof(OPTIONS) / sizeof(struct opt_s))
int
main(int argc, char **argv)
{
char *hmmfile; /* file to read HMM(s) from */
HMMFILE *hmmfp; /* opened hmmfile for reading */
struct plan7_s *hmm; /* HMM to search with */
char *afile; /* file to read alignment from */
int format; /* format determined for afile */
MSAFILE *afp; /* afile, open for reading */
MSA *msa; /* multiple sequence alignment from afile */
char **rseq; /* raw, dealigned aseq */
unsigned char *dsq; /* digitized target sequence */
struct dpmatrix_s *mx; /* reused DP alignment matrix */
struct p7trace_s *mtr; /* master traceback from alignment */
struct p7trace_s *maptr; /* master traceback from mapping */
struct p7trace_s **tr; /* individual tracebacks imposed by mtr */
struct p7trace_s **itr; /* individual trace from P7Viterbi() */
int idx; /* counter for seqs */
int ndiff; /* number of differing traces */
int rlen; /* length of an unaligned sequence */
int be_verbose;
int be_standard; /* TRUE when running standard test */
char *optname; /* name of option found by Getopt() */
char *optarg; /* argument found by Getopt() */
int optind; /* index in argv[] */
/***********************************************
* Parse command line
***********************************************/
hmmfile = "fn3.hmm";
afile = "fn3.seed";
format = MSAFILE_STOCKHOLM;
be_verbose = FALSE;
be_standard = TRUE;
while (Getopt(argc, argv, OPTIONS, NOPTIONS, usage,
&optind, &optname, &optarg)) {
if (strcmp(optname, "-v") == 0) be_verbose = TRUE;
else if (strcmp(optname, "--ali") == 0) { afile = optarg; be_standard = FALSE; }
else if (strcmp(optname, "--hmm") == 0) { hmmfile = optarg; be_standard = FALSE; }
else if (strcmp(optname, "-h") == 0) {
HMMERBanner(stdout, banner);
puts(usage);
puts(experts);
exit(0);
}
}
if (argc - optind != 0)
Die("Incorrect number of arguments.\n%s\n", usage);
/***********************************************
* Get one alignment from test file: must be Stockholm format.
***********************************************/
if ((afp = MSAFileOpen(afile, format, NULL)) == NULL)
Die("Alignment file %s could not be opened for reading", afile);
if ((msa = MSAFileRead(afp)) == NULL)
Die("Didn't read an alignment from %s", afile);
MSAFileClose(afp);
for (idx = 0; idx < msa->nseq; idx++)
s2upper(msa->aseq[idx]);
DealignAseqs(msa->aseq, msa->nseq, &rseq);
/***********************************************
* Open HMM file
* Read a single HMM from it.
***********************************************/
if ((hmmfp = HMMFileOpen(hmmfile, NULL)) == NULL)
Die("Failed to open HMM file %s\n", hmmfile);
if (!HMMFileRead(hmmfp, &hmm))
Die("Failed to read any HMMs from %s\n", hmmfile);
if (hmm == NULL)
Die("HMM file %s corrupt or in incorrect format? Parse failed", hmmfile);
HMMFileClose(hmmfp);
P7Logoddsify(hmm, TRUE);
if (! (hmm->flags & PLAN7_MAP))
Die("HMM in %s has no map", hmmfile);
if (GCGMultchecksum(msa->aseq, msa->nseq) != hmm->checksum)
Die("Checksum for alignment in %s does not match that in HMM (%d != %d)",
afile, GCGMultchecksum(msa->aseq, msa->nseq), hmm->checksum);
/***********************************************
* First test:
* mapped alignment should match re-aligned alignment:
* obtain and compare the two master traces
***********************************************/
mtr = P7ViterbiAlignAlignment(msa, hmm);
maptr = MasterTraceFromMap(hmm->map, hmm->M, msa->alen);
if (! TraceVerify(mtr, hmm->M, msa->alen))
Die("Trace verify on P7ViterbiAlignAlignment() result failed\n");
if (! TraceVerify(maptr, hmm->M, msa->alen))
Die("Trace verify on MasterTraceFromMap() result failed\n");
if (! TraceCompare(mtr, maptr))
Die("Master traces differ for alignment versus map\n");
/**************************************************
* Second test:
* seq traces implied by mapped alignment should generally match
* re-aligned individual sequences.
***************************************************/
ImposeMasterTrace(msa->aseq, msa->nseq, mtr, &tr);
itr = MallocOrDie(sizeof(struct p7trace_s *) * msa->nseq);
/* Create a DP matrix; initially only two rows big, but growable;
* we overalloc by 25 rows (L dimension) when we grow; not growable
* in model dimension, since we know the hmm size
*/
mx = CreatePlan7Matrix(1, hmm->M, 25, 0);
/* align individuals, compare traces */
ndiff = 0;
for (idx = 0; idx < msa->nseq; idx++)
{
rlen = strlen(rseq[idx]);
dsq = DigitizeSequence(rseq[idx], rlen);
P7Viterbi(dsq, rlen, hmm, mx, &(itr[idx]));
if (! TraceCompare(itr[idx], tr[idx]))
ndiff++;
free(dsq);
}
FreePlan7Matrix(mx);
/* Determine success/failure.
*/
if (ndiff > msa->nseq / 2)
Die("alignalign: Test FAILED; %d/%d differ\n", ndiff, msa->nseq);
if (be_standard) {
if (ndiff != 12)
Die("alignalign: Test FAILED; %d traces differ, should be 12\n", ndiff);
if (msa->nseq != 109)
Die("alignalign: Test FAILED; %d seqs read, should be 109\n", msa->nseq);
}
if (be_verbose) printf("alignalign: Test passed; %d/%d differ, as expected\n",
ndiff, msa->nseq);
/* Cleanup.
*/
P7FreeTrace(mtr);
P7FreeTrace(maptr);
for (idx = 0; idx < msa->nseq; idx++)
{
P7FreeTrace(tr[idx]);
P7FreeTrace(itr[idx]);
}
free(tr);
free(itr);
Free2DArray((void **) rseq, msa->nseq);
MSAFree(msa);
FreePlan7(hmm);
SqdClean();
return EXIT_SUCCESS;
}
|