From: <tr...@us...> - 2003-02-12 07:34:11
|
Update of /cvsroot/basedb/basedb/plugins/src/normalizers In directory sc8-pr-cvs1:/tmp/cvs-serv15707/normalizers Modified Files: lowess.cc lowess.hh Log Message: fix: point_fitted_beg updated even for tiny window size, updated (c) notice Index: lowess.cc =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/normalizers/lowess.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lowess.cc 1 Feb 2003 12:52:52 -0000 1.1 --- lowess.cc 12 Feb 2003 07:34:06 -0000 1.2 *************** *** 1,6 **** ! // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Lao Saal, Carl Troein, Johan Vallon-Christersson, ! // Björn Samuelsson // // This file is part of BASE. --- 1,5 ---- ! ]// // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002,2003 Björn Samuelsson // // This file is part of BASE. *************** *** 111,114 **** --- 110,114 ---- if(np_window <= 2){ copy(y_beg, y_beg + npoints, y_fit_beg); + fill(point_fitted_beg, point_fitted_beg + npoints, true); return; } Index: lowess.hh =================================================================== RCS file: /cvsroot/basedb/basedb/plugins/src/normalizers/lowess.hh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lowess.hh 1 Feb 2003 12:52:52 -0000 1.1 --- lowess.hh 12 Feb 2003 07:34:06 -0000 1.2 *************** *** 1,6 **** // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Lao Saal, Carl Troein, Johan Vallon-Christersson, ! // Björn Samuelsson // // This file is part of BASE. --- 1,5 ---- // // BioArray Software Environment (BASE) - homepage http://base.thep.lu.se/ ! // Copyright (C) 2002 Björn Samuelsson // // This file is part of BASE. |