viral_seq 1.0.12 → 1.0.13
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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +7 -2
- data/lib/viral_seq/math.rb +3 -3
- data/lib/viral_seq/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7816fd2b8da8109a24a33b8663e5f4fa5f098ed590c7403f909b593ebdd78c2f
|
|
4
|
+
data.tar.gz: adaffa3e35268eaed0bb2d0c5a6ba387f8b09bc04561a3714f9e155a55466cd5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5bfbb3c2e78ae8ef01b1750b5135a76b7fdf65ecc00ccfe141e488154adfc9b0ddff42a58ee9f682f46576060632d12cd6e540bea26e81d8bd9e346f5e7bca84
|
|
7
|
+
data.tar.gz: 3b491d3070f2e7aacc73c1c9f4942fe770f2c0e4eebe5c021e5558ce7fa0e4299c44ddde51b07b4c3118d7832236be9703707209ea0ebfb6591a576871ad0804
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -80,11 +80,16 @@ qc_seqhash.sdrm_hiv_pr(cut_off)
|
|
|
80
80
|
```
|
|
81
81
|
## Known issues
|
|
82
82
|
|
|
83
|
-
1. have a conflict with rails
|
|
84
|
-
2. Update on 03032021. Still have conflict. But in rails gem file, can just use `requires: false` globally and only require "viral_seq" when the module is needed in controller
|
|
83
|
+
1. ~~have a conflict with rails.~~
|
|
84
|
+
2. ~~Update on 03032021. Still have conflict. But in rails gem file, can just use `requires: false` globally and only require "viral_seq" when the module is needed in controller.~~
|
|
85
|
+
3. The conflict seems to be resovled. It was from a combination of using `!` as a function for factorial and the gem name `viral_seq`. @_@
|
|
85
86
|
|
|
86
87
|
## Updates
|
|
87
88
|
|
|
89
|
+
### Version 1.1.3-03032021
|
|
90
|
+
|
|
91
|
+
1. Fixed the conflict with rails.
|
|
92
|
+
|
|
88
93
|
### Version 1.1.2-03032021
|
|
89
94
|
|
|
90
95
|
1. Fixed an issue that may cause conflicts with ActiveRecord.
|
data/lib/viral_seq/math.rb
CHANGED
|
@@ -67,7 +67,7 @@ module ViralSeq
|
|
|
67
67
|
@k = k
|
|
68
68
|
@poisson_hash = {}
|
|
69
69
|
(0..k).each do |n|
|
|
70
|
-
p = (rate**n * ::Math::E**(-rate))
|
|
70
|
+
p = (rate**n * ::Math::E**(-rate))/n.factorial
|
|
71
71
|
@poisson_hash[n] = p
|
|
72
72
|
end
|
|
73
73
|
end
|
|
@@ -155,9 +155,9 @@ class Integer
|
|
|
155
155
|
# factorial method for an Integer
|
|
156
156
|
# @return [Integer] factorial for given Integer
|
|
157
157
|
# @example factorial for 5
|
|
158
|
-
#
|
|
158
|
+
# 5.factorial
|
|
159
159
|
# => 120
|
|
160
|
-
def
|
|
160
|
+
def factorial
|
|
161
161
|
if self == 0
|
|
162
162
|
return 1
|
|
163
163
|
else
|
data/lib/viral_seq/version.rb
CHANGED