ms-quant 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/ms/quant/qspec.rb +5 -2
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/lib/ms/quant/qspec.rb
CHANGED
@@ -3,8 +3,11 @@ module Ms::Quant ; end
|
|
3
3
|
|
4
4
|
class Ms::Quant::Qspec
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
# personal communication with Hyungwon Choi: "We typically use nburn=2000,
|
7
|
+
# niter=10000, which is quite sufficient to guarantee the reproducibility of
|
8
|
+
# results using the same data."
|
9
|
+
NBURNIN = 2000
|
10
|
+
NITER = 10000
|
8
11
|
INIT_HEADER = %w(protid protLen)
|
9
12
|
DELIMITER = "\t"
|
10
13
|
|