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 +4 -4
- data/etc/allowed_biomart_archives +1 -0
- data/lib/rbbt/sources/biomart.rb +2 -2
- data/lib/rbbt/sources/pubmed.rb +3 -1
- data/lib/rbbt/sources/signor.rb +5 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b10dbe140b4c0733476823e5f5d94e57a3d9a755fc370f6b9640d1e7b8efc368
|
|
4
|
+
data.tar.gz: 38aaf56670a07537ad0ef0c025d17e655fc5d7fb87d97ee1c08d0af82c44fbbd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a8ac9df1da30fc7aec3c54a5a200a0c7a9629807b9238089a1e8064e78b0ecd5bad36c4b6a77fac7e7cfdf332ad56be06149b12d0e0fd7f6506b0b82d2e03bcf
|
|
7
|
+
data.tar.gz: acff50e8bdb0d4443c3e1dbd237539953206b7d5dcb886db64ec0677f7bba43cf3a9782e4147985a9b3fc1b34df692e89fb2b7185f2aa0f93ccd196a4d19d54a
|
data/lib/rbbt/sources/biomart.rb
CHANGED
|
@@ -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')
|
data/lib/rbbt/sources/pubmed.rb
CHANGED
|
@@ -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 /
|
|
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
|
data/lib/rbbt/sources/signor.rb
CHANGED
|
@@ -19,7 +19,11 @@ module Signor
|
|
|
19
19
|
end
|
|
20
20
|
|
|
21
21
|
Signor.claim Signor.data, :proc do
|
|
22
|
-
|
|
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.
|
|
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-
|
|
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.
|
|
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)
|