Skip to content

Commit 8218d1f

Browse files
committed
Update comments and program version
1 parent 792d938 commit 8218d1f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/main/java/edu/ucsd/msjava/msutil/Enzyme.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,10 +396,11 @@ private static void register(String name, Enzyme enzyme) {
396396
enzymeTable = new HashMap<String, Enzyme>();
397397
registeredEnzymeList = new ArrayList<Enzyme>();
398398

399-
// Do not include "UnspecificCleavage" in HashMap enzymeTable
399+
// Add "UnspecificCleavage" to registeredEnzymeList
400+
// but do not call register to put it in the HashMap enzymeTable
400401
registeredEnzymeList.add(UnspecificCleavage); // 0
401402

402-
// register(UnspecificCleavage.name, UnspecificCleavage);
403+
// Skip (see above): register(UnspecificCleavage.name, UnspecificCleavage);
403404
register(TRYPSIN.name, TRYPSIN); // 1
404405
register(CHYMOTRYPSIN.name, CHYMOTRYPSIN); // 2
405406
register(LysC.name, LysC); // 3

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

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

2222

2323
public class MSGFPlus {
24-
public static final String VERSION = "Release (v2018.06.27)";
25-
public static final String RELEASE_DATE = "27 June 2018";
24+
public static final String VERSION = "Release (v2018.06.28)";
25+
public static final String RELEASE_DATE = "28 June 2018";
2626

2727
public static final String DECOY_DB_EXTENSION = ".revCat.fasta";
2828
public static final String DECOY_PROTEIN_PREFIX = "XXX";

0 commit comments

Comments
 (0)