Skip to content

Commit

Permalink
version 1.0.2
Browse files Browse the repository at this point in the history
It keeps same number of columns for all PSMs regardless of passing filter of Luciphor or not
  • Loading branch information
smdb21 committed Mar 2, 2021
1 parent f7e74ed commit 17ff142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>edu.scripps.yates</groupId>
<artifactId>luciphor_dtaselect_integrator</artifactId>
<version>1.0.1</version>
<version>1.0.2</version>
<name>luciphor_dtaselect_integrator</name>
<description>Program that takes output from luciphor and some thresholds on its scores and integrates the results into a DTASelect-filter.txt file.</description>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ private void processDTASelect(Map<String, LuciphorEntry> filteredLuciphorEntries
final String originalSequence = split[indexByHeader.get(DTA_COL_SEQUENCE)];
final String sequenceToReplace = luciphorEntry.getFormattedPredictedSequence(originalSequence);
if (originalSequence.equals(sequenceToReplace)) {
fw.write(line + "\n");
fw.write(line + "\t\t\t\n");
continue;
}
// create new array of values
Expand Down Expand Up @@ -137,7 +137,7 @@ private void processDTASelect(Map<String, LuciphorEntry> filteredLuciphorEntries
numChanged++;
continue;
} else {
fw.write(line + "\n");
fw.write(line + "\t\t\t\n");
}
}
}
Expand Down

0 comments on commit 17ff142

Please sign in to comment.