File: mwfilter.c

package info (click to toggle)
emboss 6.6.0%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 571,544 kB
  • sloc: ansic: 460,579; java: 29,439; perl: 13,573; sh: 12,754; makefile: 3,283; csh: 706; asm: 351; xml: 239; pascal: 237; modula3: 8
file content (426 lines) | stat: -rw-r--r-- 9,658 bytes parent folder | download | duplicates (8)
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/* @source mwfilter application
**
** Remove background keratin, trypsin and sodium noise from
** a file of molecular weights from a mass spec
** Also remove oxidised methionines and threonines
**
** @author Copyright (C) Alan Bleasby (ableasby@hgmp.mrc.ac.uk)
** @@
**
** This program is free software; you can redistribute it and/or
** modify it under the terms of the GNU General Public License
** as published by the Free Software Foundation; either version 2
** of the License, or (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
******************************************************************************/

#include "emboss.h"

#define DELETED -1.
#define MILLION 1000000.




/* @datastatic AjPMwh *********************************************************
**
** mwfilter internals
**
** @alias AjSMwh
** @alias AjOMwh
**
** @attr exp [double] Undocumented
** @attr data [double] Undocumented
******************************************************************************/

typedef struct AjSMwh
{
    double exp;
    double data;
} AjOMwh,*AjPMwh;




static void mwfilter_readdata(AjPFile datafile, AjPDouble *rmarray,
			      AjPDouble *darray);
static void mwfilter_readexp(AjPFile inf, AjPDouble *exparray);
static void mwfilter_noisedel(AjPDouble exparray, ajint expn,
			      const AjPDouble rmarray, ajint rmn,
			      ajint tol, AjBool showdel, AjPList dlist);
static void mwfilter_moddel(AjPDouble exparray, ajint expn,
			    const AjPDouble darray, ajint dn,
			    ajint tol);
static void mwfilter_arraytidy(AjPDouble exparray, ajint *expn);




/* @prog mwfilter *************************************************************
**
** Remove 'noisy' molecular weights
**
******************************************************************************/

int main(int argc, char **argv)
{
    AjPFile inf  = NULL;
    AjPFile outf = NULL;
    AjBool  showdel;
    AjPList dlist = NULL;

    float tolerance = 0.0;

    AjPFile datafile = NULL;

    AjPDouble rmarray  = NULL;
    AjPDouble darray   = NULL;
    AjPDouble exparray = NULL;

    ajint rmn  = 0;
    ajint dn   = 0;
    ajint expn = 0;

    ajint i;
    AjPMwh dptr = NULL;

    embInit("mwfilter", argc, argv);

    inf       = ajAcdGetInfile("infile");
    tolerance = ajAcdGetFloat("tolerance");
    datafile  = ajAcdGetDatafile("datafile");
    showdel   = ajAcdGetBoolean("showdel");
    outf      = ajAcdGetOutfile("outfile");

    exparray = ajDoubleNew();
    rmarray  = ajDoubleNew();
    darray   = ajDoubleNew();

    dlist = ajListNew();

    /* Get keratin/trypsin & oxymet/oxythr/sodium data */
    mwfilter_readdata(datafile, &rmarray, &darray);
    ajFileClose(&datafile);
    rmn = ajDoubleLen(rmarray);
    dn  = ajDoubleLen(darray);

    /* Get experimental results */
    mwfilter_readexp(inf, &exparray);
    expn = ajDoubleLen(exparray);

    /* Delete keratin noise etc */
    mwfilter_noisedel(exparray,expn,rmarray,rmn,(ajint)tolerance,showdel,
		      dlist);
    mwfilter_arraytidy(exparray,&expn);

    /* Delete oxymet & sodium noise etc */
    mwfilter_moddel(exparray,expn,darray,dn,(ajint)tolerance);
    mwfilter_arraytidy(exparray,&expn);

    for(i=0;i<expn;++i)
	ajFmtPrintF(outf,"%lf\n",ajDoubleGet(exparray,i));

    if(showdel)
    {
	ajFmtPrintF(outf,"\n\nDeleted weights\n\n");
	while(ajListPop(dlist,(void **)&dptr))
	{
	    ajFmtPrintF(outf,"%lf - %lf\n",dptr->exp,dptr->data);
	    AJFREE(dptr);
	}
    }


    ajDoubleDel(&exparray);
    ajDoubleDel(&rmarray);
    ajDoubleDel(&darray);


    ajListFree(&dlist);

    ajFileClose(&inf);
    ajFileClose(&outf);

    embExit();

    return 0;
}




/* @funcstatic mwfilter_readdata **********************************************
**
** Read molecular weight exclusion file.
**
** @param [u] inf [AjPFile] Datafile (Emwfilter.dat)
** @param [w] rmarray [AjPDouble*] keratin/trypsin data etc
** @param [w] darray [AjPDouble*] oxymet/sodium data etc
** @@
******************************************************************************/
static void mwfilter_readdata(AjPFile inf, AjPDouble *rmarray,
			      AjPDouble *darray)
{
    ajint   rmn = 0;
    ajint   dn  = 0;

    AjPStr  line = NULL;
    char    c;
    double  n;

    line = ajStrNew();

    /* Read in the top of the file (noisy molwts) */
    while(ajReadlineTrim(inf,&line) && !ajStrPrefixC(line,"Displacements"))
    {
	if(!ajStrGetLen(line))
	    continue;
	c = *ajStrGetPtr(line);
	if(c=='#' || c=='\n')
	    continue;
	if(ajFmtScanS(line,"%*s%lf",&n) != 1)
	    continue;

	ajDoublePut(rmarray,rmn++,n);
    }

    /*
    ** If no displacements then return, otherwise read them in
    ** This copes with oxy-Met, oxy-Thr & Na
    */
    if(!ajStrPrefixC(line,"Displacements"))
    {
	ajStrDel(&line);
	ajFileClose(&inf);
	return;
    }

    while(ajReadlineTrim(inf,&line))
    {
	if(!ajStrGetLen(line))
	    continue;
	c = *ajStrGetPtr(line);

	if(c=='#' || c=='\n')
	    continue;

	if(ajFmtScanS(line,"%*s%lf",&n) != 1)
	    continue;

	ajDoublePut(darray,dn++,n);
    }

    ajStrDel(&line);

    return;
}




/* @funcstatic mwfilter_readexp ***********************************************
**
** Read experimental data.
**
** @param [u] inf [AjPFile] Experimental data
** @param [w] exparray [AjPDouble*] Data array
** @@
******************************************************************************/

static void mwfilter_readexp(AjPFile inf, AjPDouble *exparray)
{
    ajint expn  = 0;

    AjPStr line = NULL;
    char c;
    double n;

    line = ajStrNew();

    while(ajReadlineTrim(inf,&line))
    {
	if(!ajStrGetLen(line))
	    continue;
	c = *ajStrGetPtr(line);

	if(c=='#' || c=='\n')
	    continue;

	if(ajFmtScanS(line,"%lf",&n) != 1)
	    continue;

	ajDoublePut(exparray,expn++,n);
    }

    ajStrDel(&line);

    return;
}




/* @funcstatic mwfilter_noisedel **********************************************
**
** Mark as DELETED keratin/trypsin peaks.
**
** @param [u] exparray [AjPDouble] Experimental data
** @param [r] expn [ajint] Number of experimental peaks
** @param [r] rmarray [const AjPDouble] keratin/trypsin data etc
** @param [r] rmn [ajint] Number of keratin/trypsin peaks
** @param [r] tol [ajint] Tolerance (ppm)
** @param [r] showdel [AjBool] show deleted wts
** @param [w] dlist [AjPList] list to store deleted weights
** @@
******************************************************************************/

static void mwfilter_noisedel(AjPDouble exparray, ajint expn,
			      const AjPDouble rmarray, ajint rmn,
			      ajint tol, AjBool showdel, AjPList dlist)
{
    ajint i;
    ajint j;
    double mwmin;
    double mwmax;
    double n;
    double ppmval;
    double mwexp;
    AjPMwh delwt = NULL;

    for(i=0;i<expn;++i)
    {
	mwexp = ajDoubleGet(exparray,i);
	ppmval = mwexp * tol / MILLION;
	mwmin  = mwexp - ppmval;
	mwmax  = mwexp + ppmval;

	for(j=0;j<rmn;++j)
	{
	    n = ajDoubleGet(rmarray,j);
	    if(n>mwmin && n<mwmax)
	    {
		ajDoublePut(&exparray,i,DELETED);
		if(showdel)
		{
		    AJNEW(delwt);
		    delwt->exp = mwexp;
		    delwt->data = n;
		    ajListPushAppend(dlist,(void *)delwt);
		}
	    }
	}
    }

    return;
}




/* @funcstatic mwfilter_arraytidy *********************************************
**
** Delete from an array peaks marked as DELETED.
**
** @param [u] exparray [AjPDouble] Experimental data
** @param [w] expn [ajint*] Number of experimental peaks
** @@
******************************************************************************/
static void mwfilter_arraytidy(AjPDouble exparray, ajint *expn)
{
    ajint i;
    ajint j;
    ajint n;
    ajint limit;
    double v=0.;

    limit = *expn;

    for(i=0,n=0;i<limit;++i)
	if(ajDoubleGet(exparray,i) != DELETED)
	{
	    ++n;
	    continue;
	}
	else
	{
	    for(j=i;j<limit;++j)
		if(j!=limit-1)
		{
		    v = ajDoubleGet(exparray,j+1);
		    ajDoublePut(&exparray,j,v);
		}
	    --limit;
	    --i;
	}

    *expn = n;
    return;
}




/* @funcstatic mwfilter_moddel ************************************************
**
** Mark as DELETED oxymet/sodium peaks.
**
** @param [u] exparray [AjPDouble] Experimental data
** @param [r] expn [ajint] Number of experimental peaks
** @param [r] darray [const AjPDouble] oxymet/sodium molwts etc
** @param [r] dn [ajint] Number of oxymet/sodium molwts
** @param [r] tol [ajint] Tolerance (ppm)
** @@
******************************************************************************/
static void mwfilter_moddel(AjPDouble exparray, ajint expn,
			    const AjPDouble darray, ajint dn,
			    ajint tol)
{
    ajint i;
    ajint j;
    ajint k;
    double mwmin;
    double mwmax;
    double n;
    double ppmval;
    double mwexp;
    double mwmod;
    double modmin;
    double modmax;

    for(k=0;k<dn;++k)
    {
	mwmod  = ajDoubleGet(darray,k);
	ppmval = mwmod *tol / MILLION;
	modmin = mwmod - ppmval;
	modmax = mwmod + ppmval;

	for(i=0;i<expn;++i)
	{
	    mwexp = ajDoubleGet(exparray,i);
	    if(mwexp == DELETED)
		continue;
	    mwmin = mwexp + modmin;
	    mwmax = mwexp + modmax;

	    for(j=i+1;j<expn;++j)
	    {
		n = ajDoubleGet(exparray,j);
		if(n == DELETED)
		    continue;
		if(n>mwmin && n<mwmax)
		    ajDoublePut(&exparray,i,DELETED);
	    }

	}
    }

    return;
}