|
From: <ds...@us...> - 2010-08-11 06:09:30
|
Revision: 5106
http://sashimi.svn.sourceforge.net/sashimi/?rev=5106&view=rev
Author: dshteyn
Date: 2010-08-11 06:09:24 +0000 (Wed, 11 Aug 2010)
Log Message:
-----------
BUGFIX: PeptideProphetParser related to use of uninitialized variable.
Modified Paths:
--------------
branches/4-4/trans_proteomic_pipeline/src/Validation/MixtureDistribution/KernelDensityRTMixtureDistr.cxx
Modified: branches/4-4/trans_proteomic_pipeline/src/Validation/MixtureDistribution/KernelDensityRTMixtureDistr.cxx
===================================================================
--- branches/4-4/trans_proteomic_pipeline/src/Validation/MixtureDistribution/KernelDensityRTMixtureDistr.cxx 2010-08-11 00:30:40 UTC (rev 5105)
+++ branches/4-4/trans_proteomic_pipeline/src/Validation/MixtureDistribution/KernelDensityRTMixtureDistr.cxx 2010-08-11 06:09:24 UTC (rev 5106)
@@ -38,6 +38,7 @@
RTvals_ = new Array<double>;
model_ = new KDModel(name, 100);
update_ctr_ = 0;
+ ready_ = false;
min_ctr_ = 2;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|