rbbt-dm 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/lib/rbbt/statistics/fdr.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
ZmUyMjZiODkyY2RmODNkMmNkMGJmYWZiYWFmMThkMDIzOGIzZDE5OA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MTQ4MjdiZDY3YTljZTU2ZTViODVjNjA1NTdmYTY1MDQ2OWMxYmIzNg==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjBjZGUxNzk2Y2M1NDU1MzNmZmI1MTk3ODdhOTMxMjA4Njk5NzhkNGM4Mjhh
|
10
|
+
ODZmZmNiOWRjZGQ2ZjBlYTMzMDliZDM2ZDBkYjMzNDA2MThkNjdmNzJmOTNh
|
11
|
+
MmRmN2Y5MzEzOGM0MDUwNWQzYzE2YmVjYTdjMmMzMzk0MTNhNjQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NTZkZGFiODMwZTljNDNhYzEyMWJiYzljNGE4OWYzNTFkNjg2OGRjY2Q1ZDQ5
|
14
|
+
Y2QwZjMwNzgzNmUyYzI1NmJjNzkyYjhhZDU2M2ZmZjU0ZWY4Mjg3NGYxOGU4
|
15
|
+
YTNmN2ZhYzhkMGQ1NWYxNjhjY2FkMzIzOGQwMWI5M2M0ZDE4NzU=
|
data/lib/rbbt/statistics/fdr.rb
CHANGED
@@ -52,7 +52,7 @@ module FDR
|
|
52
52
|
c_code = <<-EOC_CODE
|
53
53
|
double step_up_fast(VALUE ps, double rate){
|
54
54
|
long idx;
|
55
|
-
int total = RARRAY_LEN(ps);
|
55
|
+
int total = (int) RARRAY_LEN(ps);
|
56
56
|
|
57
57
|
double last_value = 0;
|
58
58
|
for (idx = 0; idx < total; idx++){
|
@@ -74,7 +74,7 @@ module FDR
|
|
74
74
|
VALUE adjust_fast_self(VALUE ps){
|
75
75
|
long idx;
|
76
76
|
|
77
|
-
int total = RARRAY_LEN(ps);
|
77
|
+
int total = (int) RARRAY_LEN(ps);
|
78
78
|
|
79
79
|
VALUE new = rb_ary_new();
|
80
80
|
|
@@ -99,7 +99,7 @@ module FDR
|
|
99
99
|
VALUE adjust_fast(VALUE ps){
|
100
100
|
long idx;
|
101
101
|
|
102
|
-
int total = RARRAY_LEN(ps);
|
102
|
+
int total = (int) RARRAY_LEN(ps);
|
103
103
|
|
104
104
|
VALUE new = rb_ary_new();
|
105
105
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbbt-dm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Vazquez
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rbbt-util
|