Skip to content

Commit e42239e

Browse files
committed
Bump version and update changelog; also update some comments
1 parent f3a67e4 commit e42239e

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

docs/Changelog.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ <h1 class="pagetitle">MS-GF+ ChangeLog</h1>
1313
<a href="index.html">MS-GF+ Documentation home</a>
1414
</p>
1515

16+
<p>
17+
<b>v2019.02.28</b>
18+
</p>
19+
<ul>
20+
<li>Fix a math error that introduced new erroneous output.</li>
21+
</ul>
22+
1623
<p>
1724
<b>v2019.02.27</b>
1825
</p>

src/main/java/edu/ucsd/msjava/mzid/MZIdentMLGen.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -634,11 +634,10 @@ public List<PeptideEvidenceRef> getPeptideEvidenceList(DatabaseMatch match, Pept
634634
if (sa.getSequence().getByteAt(index) == 0 && sa.getSequence().getCharAt(index + 1) == 'M') {
635635
// match.isNTermMetCleaved() is specific to only one of the matched peptides in most cases
636636
// Do a double-check that the index/protein match is correct for the sequence by checking
637-
// the first residue (if not 'M') or matching the peptide sequence to sequence at index + 1
637+
// the first residue (if not 'M') or matching the peptide sequence to sequence at index + 2
638638
isNTermMetCleaved = match.isNTermMetCleaved() || peptide.getPeptideSequence().charAt(0) != 'M';
639639
if (!isNTermMetCleaved) {
640640
// peptideSequence begins with M
641-
// TODO: is this considered possible (N-Term Methionine cleavage and peptide begins with M)?
642641
// check if the sequence starting at index + 2 matches the provided peptide sequence
643642
String matchSequence = sa.getSequence().getSubsequence(index + 2, index + 3 + peptide.getPeptideSequence().length());
644643
isNTermMetCleaved = matchSequence.startsWith(peptide.getPeptideSequence());

src/main/java/edu/ucsd/msjava/ui/MSGFPlus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222

2323

2424
public class MSGFPlus {
25-
public static final String VERSION = "Release (v2019.02.27)";
26-
public static final String RELEASE_DATE = "27 February 2019";
25+
public static final String VERSION = "Release (v2019.02.28)";
26+
public static final String RELEASE_DATE = "28 February 2019";
2727

2828
public static final String DECOY_DB_EXTENSION = ".revCat.fasta";
2929
public static final String DEFAULT_DECOY_PROTEIN_PREFIX = "XXX";

0 commit comments

Comments
 (0)