bio-bigwig 0.0.5 → 0.0.6
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/ext/bio/bigwig/bigwigext.c +0 -6
- data/lib/bio/bigwig/version.rb +1 -1
- data/lib/bio/bigwig.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87a8791f8697b0b4cff130d28f370e67770688d6da475f7caf956556c8431332
|
|
4
|
+
data.tar.gz: 8faebc66db077059394015892d69c3dde78e4eee4eb614f36b2b3377bd88450f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 017d2fa8b7b03646961344fad93a97d71e9a3d3620e0ced75002d64fa44f5175a8434249ed668924b67b72df2d43a05986dca836018c8e5c144a03ee4a5fa29a
|
|
7
|
+
data.tar.gz: 9ca76c76d3803689d7e94cd5d9acbd5bd5e939d94bab7a8a2d3c1f0a13ebd5bd3ee97ea617a16877f8a4673ac2fc3291c9b01d56acfa15e70dd05204ec50f398
|
data/ext/bio/bigwig/bigwigext.c
CHANGED
|
@@ -332,12 +332,6 @@ bw_get_stats(VALUE self, VALUE rb_chrom, VALUE rb_start, VALUE rb_end, VALUE rb_
|
|
|
332
332
|
if (rb_type != Qnil)
|
|
333
333
|
type = StringValueCStr(rb_type);
|
|
334
334
|
|
|
335
|
-
if (rb_exact != Qnil)
|
|
336
|
-
{
|
|
337
|
-
if (RTEST(rb_exact) == 1)
|
|
338
|
-
endl = startl + nBins - 1;
|
|
339
|
-
}
|
|
340
|
-
|
|
341
335
|
tid = bwGetTid(bw, chrom);
|
|
342
336
|
|
|
343
337
|
if (endl == (unsigned long)-1 && tid != (uint32_t)-1)
|
data/lib/bio/bigwig/version.rb
CHANGED
data/lib/bio/bigwig.rb
CHANGED
|
@@ -40,8 +40,8 @@ module Bio
|
|
|
40
40
|
intervals_raw(chrom, start, stop)
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
def entries(chrom, start = 0, stop = -1,
|
|
44
|
-
entries_raw(chrom, start, stop,
|
|
43
|
+
def entries(chrom, start = 0, stop = -1, with_string: true)
|
|
44
|
+
entries_raw(chrom, start, stop, with_string)
|
|
45
45
|
end
|
|
46
46
|
end
|
|
47
47
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bio-bigwig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- kojix2
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-09-
|
|
11
|
+
date: 2024-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: This is a Ruby binding for libBigWig (https://github.com/dpryan79/libBigWig),
|
|
14
14
|
which provides high-speed access to bigWig or bigBed files.
|