Skip to content

Commit

Permalink
Add an comment related to Xolik.
Browse files Browse the repository at this point in the history
  • Loading branch information
fcyu committed Feb 4, 2018
1 parent 1006535 commit 0309039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/proteomics/Spectrum/PreSpectrum.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private double[] normalizeSpec(double[] plArray) {

if (maxWindowIntensity > 0) {
double temp1 = 50 / maxWindowIntensity;
double temp2 = 0.05 * maxIntensity;
double temp2 = 0.05 * maxIntensity; // caution: Xolik does not have this
for (int j = 0; j < windowSize; ++j) {
int idx = i * windowSize + j;
if (idx < plArray.length) {
Expand Down

0 comments on commit 0309039

Please sign in to comment.