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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a7c6f632a8789e179e25df4689ba33ea3afa6ab2e61eaa3eb4e2ec9aa83595b
4
- data.tar.gz: d60bff195ccd4b53bce8c7cdc826e204d28df864bf6c564f23dea925e012b751
3
+ metadata.gz: 87a8791f8697b0b4cff130d28f370e67770688d6da475f7caf956556c8431332
4
+ data.tar.gz: 8faebc66db077059394015892d69c3dde78e4eee4eb614f36b2b3377bd88450f
5
5
  SHA512:
6
- metadata.gz: bf0692a90f5dc3fd04d86f155360d4d917657dfd460fc93f44b49acf8669290d5b9c836b941b7723fdda3ad9afcf7ced19e0e73c5e81ad72df7bd46f8623e674
7
- data.tar.gz: 3e9a81e355c12c6c161f46f66a16db12f707135f7b37b9459eb50e4824cf4739759bc346dede7237dafa4d181b0914317de9ccf0e3255df839edf9f2752fa2e3
6
+ metadata.gz: 017d2fa8b7b03646961344fad93a97d71e9a3d3620e0ced75002d64fa44f5175a8434249ed668924b67b72df2d43a05986dca836018c8e5c144a03ee4a5fa29a
7
+ data.tar.gz: 9ca76c76d3803689d7e94cd5d9acbd5bd5e939d94bab7a8a2d3c1f0a13ebd5bd3ee97ea617a16877f8a4673ac2fc3291c9b01d56acfa15e70dd05204ec50f398
@@ -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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Bio
4
4
  class BigWig
5
- VERSION = "0.0.5"
5
+ VERSION = "0.0.6"
6
6
  end
7
7
  end
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, text: true)
44
- entries_raw(chrom, start, stop, text)
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.5
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-24 00:00:00.000000000 Z
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.