Browse code

fixed electron mass

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/Rdisop@65324 bc3139a8-67e5-0310-9ffc-ced21a209358

s.neumann authored on 21/04/2012 19:20:05
Showing 3 changed files

... ...
@@ -1,3 +1,7 @@
1
+2012-04-21  Steffen Neumann  <sneumann@ipb-halle.de>
2
+
3
+	* R/elements.R (initializeCharges): Fixed electron mass
4
+
1 5
 2012-03-28  Steffen Neumann  <sneumann@ipb-halle.de>
2 6
 	* Added citations in package and documentation
3 7
 	
... ...
@@ -1,7 +1,7 @@
1 1
 Package: Rdisop
2 2
 Title: Decomposition of Isotopic Patterns
3
-Version: 1.17.0
4
-Date: 2012-03-30
3
+Version: 1.17.1
4
+Date: 2012-04-21
5 5
 Author: Anton Pervukhin <apervukh@minet.uni-jena.de>, Steffen Neumann <sneumann@ipb-halle.de> 
6 6
 Maintainer: Steffen Neumann <sneumann@ipb-halle.de>
7 7
 Description: Identification of metabolites using high precision mass
... ...
@@ -158,8 +158,8 @@ initializePSE <- function() {
158 158
 }
159 159
 
160 160
 initializeCharges <- function() {
161
-    positive <- list(name="+", mass=0, isotope = list(mass=c(-0.005485), abundance=c(1)))
162
-    negative <- list(name="-", mass=0, isotope = list(mass=c(+0.005485), abundance=c(1)))
161
+    positive <- list(name="+", mass=0, isotope = list(mass=c(-0.00054858), abundance=c(1)))
162
+    negative <- list(name="-", mass=0, isotope = list(mass=c(+0.00054858), abundance=c(1)))
163 163
     list(positive, negative)
164 164
 }
165 165