Skip to content

Commit

Permalink
Version 2.36, Build 70; February 23, 2007
Browse files Browse the repository at this point in the history
 - Added option to include 3+ fragmentation ions in the GetFragmentationMasses() function
  • Loading branch information
alchemistmatt committed May 11, 2007
1 parent e27373f commit ae497b0
Show file tree
Hide file tree
Showing 37 changed files with 3,020 additions and 1,539 deletions.
4 changes: 4 additions & 0 deletions FileIOFunctions.bas
Original file line number Diff line number Diff line change
Expand Up @@ -1613,6 +1613,8 @@ On Error GoTo ParseFragModelSettingErrorHandler
Case "FRAGMODELPHOSPHATELOSS": frmFragmentationModelling.chkPhosphateLoss = lngSettingInFile
Case "FRAGMODELDOUBLECHARGE": frmFragmentationModelling.chkDoubleCharge = lngSettingInFile
Case "FRAGMODELDOUBLECHARGETHRESHOLD": frmFragmentationModelling.cboDoubleCharge.ListIndex = lngSettingInFile
Case "FRAGMODELTRIPLECHARGE": frmFragmentationModelling.chkTripleCharge = lngSettingInFile
Case "FRAGMODELTRIPLECHARGETHRESHOLD": frmFragmentationModelling.cboTripleCharge.ListIndex = lngSettingInFile
Case "FRAGMODELPRECURSORIONREMOVE": frmFragmentationModelling.chkRemovePrecursorIon = lngSettingInFile
Case "FRAGMODELPRECURSORIONMASS": frmFragmentationModelling.txtPrecursorIonMass = strSettingInFile
Case "FRAGMODELPRECURSORIONMASSWINDOW": frmFragmentationModelling.txtPrecursorMassWindow = strSettingInFile
Expand Down Expand Up @@ -2148,6 +2150,8 @@ On Error GoTo SaveSequenceInfoErrorHandler
Print #SeqFileNum, "FragModelPhosphateLoss=" & CheckBoxToIntegerString(.chkPhosphateLoss)
Print #SeqFileNum, "FragModelDoubleCharge=" & CheckBoxToIntegerString(.chkDoubleCharge)
Print #SeqFileNum, "FragModelDoubleChargeThreshold=" & .cboDoubleCharge.ListIndex
Print #SeqFileNum, "FragModelTripleCharge=" & CheckBoxToIntegerString(.chkTripleCharge)
Print #SeqFileNum, "FragModelTripleChargeThreshold=" & .cboTripleCharge.ListIndex
Print #SeqFileNum, "FragModelPrecursorIonRemove=" & CheckBoxToIntegerString(.chkRemovePrecursorIon)
Print #SeqFileNum, "FragModelPrecursorIonMass=" & .txtPrecursorIonMass
Print #SeqFileNum, "FragModelPrecursorIonMassWindow=" & .txtPrecursorMassWindow
Expand Down
1,128 changes: 1,128 additions & 0 deletions Lang_French.ini

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions MWTWIN.BAS
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Option Explicit
' version 6.35

' *** Be sure to update version in Project | Properties also ***
Public Const PROGRAM_VERSION = "6.42"
Public Const PROGRAM_DATE = "November 5, 2006"
Public Const PROGRAM_VERSION = "6.43"
Public Const PROGRAM_DATE = "February 23, 2007"
' ***

'
Expand Down Expand Up @@ -2841,7 +2841,9 @@ On Error GoTo SetDefaultValuesAndFormulasErrorHandler
SetCheckBox .chkAmmoniaLoss, False
SetCheckBox .chkPhosphateLoss, False
SetCheckBox .chkDoubleCharge, False
SetCheckBox .chkTripleCharge, False
.cboDoubleCharge.ListIndex = 8
.cboTripleCharge.ListIndex = 9
SetCheckBox .chkRemovePrecursorIon, True
.txtPrecursorIonMass = "300"
.txtPrecursorMassWindow = "2"
Expand Down
2 changes: 1 addition & 1 deletion MWT_ELEM.bak
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
; Elements File for MWTWIN program (v6.41)
; Elements File for MWTWIN program (v6.43)
;
; Comments may be added by preceding with a semicolon
; The heading [ELEMENTWEIGHTTYPE] 1 signifies that Average Elemental Weights are
Expand Down
Loading

0 comments on commit ae497b0

Please sign in to comment.