egor 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +14 -0
- data/Manifest.txt +2 -0
- data/README.rdoc +2 -2
- data/lib/egor/cli.rb +553 -401
- data/lib/egor.rb +1 -1
- data/lib/environment.rb +2 -2
- data/lib/environment_class_hash.rb +18 -0
- data/lib/environment_feature_array.rb +10 -0
- data/website/index.html +2 -2
- metadata +6 -25
- data.tar.gz.sig +0 -0
- metadata.gz.sig +0 -0
data/History.txt
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
== 0.0.5 2009-1-23
|
2
|
+
|
3
|
+
* 4 major enhancement:
|
4
|
+
* Egor warns if your sigma value is too big for any amino acid count (minimum ratio of amino acid count to sigma value: 500.0)
|
5
|
+
* --augosigma option was added to avoid excessive influence of backgournd frequencies
|
6
|
+
* a bug in p2 probabilty calculation of the partial smoothing procedure was fixed
|
7
|
+
* a bug in total probability/log odds ratio calculation was fixed
|
8
|
+
|
9
|
+
* 4 minor enhancement:
|
10
|
+
* --noround option was added to get original log odds ratios
|
11
|
+
* --p1smooth option was added to enable p1 probability smoothing when partial smoothing
|
12
|
+
* default verbosity has been changed from ERROR to WARN
|
13
|
+
* codes were refactored to be more human readable and DRY
|
14
|
+
|
1
15
|
== 0.0.4 2008-12-15
|
2
16
|
|
3
17
|
* 2 major enhancement:
|
data/Manifest.txt
CHANGED
@@ -11,7 +11,9 @@ lib/egor.rb
|
|
11
11
|
lib/egor/cli.rb
|
12
12
|
lib/enumerable_extensions.rb
|
13
13
|
lib/environment.rb
|
14
|
+
lib/environment_class_hash.rb
|
14
15
|
lib/environment_feature.rb
|
16
|
+
lib/environment_feature_array.rb
|
15
17
|
lib/math_extensions.rb
|
16
18
|
lib/narray_extensions.rb
|
17
19
|
lib/nmatrix_extensions.rb
|
data/README.rdoc
CHANGED
@@ -34,8 +34,8 @@ egor: Esst GeneratOR, a program for calculating environment-specific substitutio
|
|
34
34
|
--tem-list (-l) FILE: a list for tem files
|
35
35
|
--classdef (-c) FILE: a file for the defintion of environments (default: 'classdef.dat')
|
36
36
|
--outfile (-o) FILE: output filename (default 'allmat.dat')
|
37
|
-
--weight (-w) INTEGER: clustering level (PID) for the BLOSUM-like weighting
|
38
|
-
--noweight: calculate substitution counts with no weights
|
37
|
+
--weight (-w) INTEGER: clustering level (PID) for the BLOSUM-like weighting (default: 60)
|
38
|
+
--noweight: calculate substitution counts with no weights
|
39
39
|
--smooth (-s) INTEGER:
|
40
40
|
0 for parial smoothing (default)
|
41
41
|
1 for full smoothing
|