rbbt-sources 3.2.16 → 3.3.0

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: 0745fa19486f2c9c8c86b24ddf5f44689aa010c500db0bf7fadfc67e03072bf8
4
- data.tar.gz: b6d5f1481202d3f191b725f5c0021c371a4f044e14661d3534d31a260ffb480e
3
+ metadata.gz: b10dbe140b4c0733476823e5f5d94e57a3d9a755fc370f6b9640d1e7b8efc368
4
+ data.tar.gz: 38aaf56670a07537ad0ef0c025d17e655fc5d7fb87d97ee1c08d0af82c44fbbd
5
5
  SHA512:
6
- metadata.gz: 1241babce1692c616242e1ef5a501c5e337f3b042110fca932ee3e320ade576538be40723968eabac97ea02133d58144275f5949c3288926d87fc03192417522
7
- data.tar.gz: 53b45cbb861f44f2f4f51f4e14a36c3f70210d729f45138228ac06a542857162e94f736b0b43a107af413da0ff68247061e4d99a774932fa5b4f65b3547205c3
6
+ metadata.gz: a8ac9df1da30fc7aec3c54a5a200a0c7a9629807b9238089a1e8064e78b0ecd5bad36c4b6a77fac7e7cfdf332ad56be06149b12d0e0fd7f6506b0b82d2e03bcf
7
+ data.tar.gz: acff50e8bdb0d4443c3e1dbd237539953206b7d5dcb886db64ec0677f7bba43cf3a9782e4147985a9b3fc1b34df692e89fb2b7185f2aa0f93ccd196a4d19d54a
@@ -1,6 +1,7 @@
1
1
  may2009
2
2
  feb2014
3
3
  may2017
4
+ oct2018
4
5
  apr2019
5
6
  feb2021
6
7
  feb2023
@@ -15,7 +15,7 @@ module BioMart
15
15
 
16
16
  BIOMART_URL = 'http://www.ensembl.org/biomart/martservice?query='
17
17
 
18
- MISSING_IN_ARCHIVE = Rbbt.etc.biomart.missing_in_archive.exists? ? Rbbt.etc.biomart.missing_in_archive.yaml : {}
18
+ MISSING_IN_ARCHIVE = Rbbt.etc.biomart.missing_in_archive.exists? ? Rbbt.etc.biomart.missing_in_archive.find.yaml : {}
19
19
 
20
20
  private
21
21
 
@@ -33,7 +33,7 @@ module BioMart
33
33
 
34
34
  def self.set_archive(date)
35
35
  if defined? Rbbt and Rbbt.etc.allowed_biomart_archives.exists?
36
- raise "Biomart archive #{ date } is not allowed in this installation" unless Rbbt.etc.allowed_biomart_archives.read.split("\n").include? date
36
+ raise "Biomart archive #{ date } is not allowed in this installation" unless Rbbt.etc.allowed_biomart_archives.find.read.split("\n").include? date
37
37
  end
38
38
  Thread.current['archive'] = date
39
39
  Thread.current['archive_url'] = BIOMART_URL.sub(/www/, date + '.archive')
@@ -241,11 +241,13 @@ module PubMed
241
241
  pmids = [pmids] unless Array === pmids
242
242
  pmids = pmids.compact.collect{|id| id}
243
243
 
244
+ chunk_size = 50
244
245
  result_files = FileCache.cache_online_elements(pmids, 'pubmed-{ID}.xml') do |ids|
245
246
  result = {}
246
247
  values = []
247
- chunks = Misc.divide(ids, (ids.length / 20) + 1)
248
+ chunks = Misc.divide(ids, (ids.length / chunk_size) + 1)
248
249
  Log::ProgressBar.with_bar(chunks.length, :desc => "Downloading articles from PubMed") do |bar|
250
+ bar.init
249
251
  chunks.each do |list|
250
252
  begin
251
253
  Misc.try3times do
@@ -19,7 +19,11 @@ module Signor
19
19
  end
20
20
 
21
21
  Signor.claim Signor.data, :proc do
22
- Signor[".source/all.csv"].tsv :header_hash => '', :merge => true, :zipped => true
22
+ begin
23
+ Signor[".source/all.csv"].tsv :header_hash => '', :merge => true, :zipped => true
24
+ rescue
25
+ Signor[".source/all.csv"].tsv :header_hash => '', :merge => true, :one2one => true
26
+ end
23
27
  end
24
28
 
25
29
  Signor.claim Signor.protein_protein, :proc do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbbt-sources
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.16
4
+ version: 3.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-18 00:00:00.000000000 Z
11
+ date: 2023-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbbt-util
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
164
  - !ruby/object:Gem::Version
165
165
  version: '0'
166
166
  requirements: []
167
- rubygems_version: 3.4.19
167
+ rubygems_version: 3.5.0.dev
168
168
  signing_key:
169
169
  specification_version: 4
170
170
  summary: Data sources for the Ruby Bioinformatics Toolkit (rbbt)