rbbt-sources 3.1.17 → 3.1.18

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
  SHA1:
3
- metadata.gz: bf8a7403301523a87252057d4be1ac9e0f348708
4
- data.tar.gz: '0939814d7b68cb713e05b5f1af2a572a8fffee75'
3
+ metadata.gz: d6a24c95d852df442ed303fe4fdc57b47b2fd0f2
4
+ data.tar.gz: ea6a37e44a97d4a8659a8d07ee58f7264fa50062
5
5
  SHA512:
6
- metadata.gz: 779c0aa427ee0335a2533533179e05ef0c42c543316ea7cd9eb3c5b793f6603ea46cf63bffba71df9aed9cec0fc08df984255c1c3a83fe85c9bb5b51048395d1
7
- data.tar.gz: 8a78a7bc1e4ba4819849c0375a1d6744e20bce89cdaf91e1c21cd26d4541f2ff91bd1d5aa9bed05e38b211051cc51774df2b0d2eb198bd4500d94c95196d48ac
6
+ metadata.gz: a78985096754ac5d3689f06306c470b2f82334c9e427cb5efe05a88d78051fab07644e656f646079903eb2811642274039b6b71b8c233ef9e2f7fa45dd672add
7
+ data.tar.gz: 99004a5e7c6bc624f371f70306600cca13f915a13c2021c7ac50705206b6cc8df678d757843ab6e969c0b5dd4b453ce3e8f58d9ad0b9b766162e9042cb108842
@@ -1,9 +1,7 @@
1
1
  may2009
2
2
  may2012
3
- sep2013
4
- jan2013
5
- feb2014
6
3
  dec2013
4
+ feb2014
7
5
  dec2014
8
6
  dec2015
9
7
  oct2016
@@ -1,10 +1,13 @@
1
+ ">dec2016":
2
+ - uniprot_swissprot_accession~uniprotswissprot
3
+ - uniprot_swissprot~uniprotswissprot
4
+ - codelink
1
5
  "<jun2009":
2
6
  - refseq_mrna
3
7
  - refseq_ncrna
4
8
  - refseq_mrna_predicted
5
9
  - refseq_ncrna_predicted
6
10
  ">jun2015":
7
- - uniprot_swissprot
8
11
  - uniprot_swissprot_accession~uniprot_swissprot
9
12
  <aug2014:
10
13
  - external_gene_name~external_gene_id
@@ -209,8 +209,12 @@ module BioMart
209
209
  orig,_sep, new = str.partition "~"
210
210
  changes[orig] = new
211
211
  end
212
- attrs = attrs.collect{|n,k| [n, changes[k] || k] }
213
- attrs
212
+ changed = true
213
+ while changed
214
+ new_attrs = attrs.collect{|n,k| [n, changes[k] || k] }
215
+ changed = new_attrs != attrs
216
+ attrs = new_attrs
217
+ end
214
218
 
215
219
 
216
220
  codes = attrs.collect{|attr| attr[1]}
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.1.17
4
+ version: 3.1.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-10 00:00:00.000000000 Z
11
+ date: 2017-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbbt-util
@@ -181,24 +181,24 @@ required_rubygems_version: !ruby/object:Gem::Requirement
181
181
  version: '0'
182
182
  requirements: []
183
183
  rubyforge_project:
184
- rubygems_version: 2.6.6
184
+ rubygems_version: 2.6.12
185
185
  signing_key:
186
186
  specification_version: 4
187
187
  summary: Data sources for the Ruby Bioinformatics Toolkit (rbbt)
188
188
  test_files:
189
- - test/test_helper.rb
190
- - test/rbbt/sources/test_pubmed.rb
191
- - test/rbbt/sources/test_string.rb
192
- - test/rbbt/sources/test_gscholar.rb
193
- - test/rbbt/sources/test_biomart.rb
194
189
  - test/rbbt/sources/test_go.rb
190
+ - test/rbbt/sources/test_pubmed.rb
195
191
  - test/rbbt/sources/test_pina.rb
196
- - test/rbbt/sources/test_entrez.rb
197
192
  - test/rbbt/sources/test_pharmagkb.rb
198
193
  - test/rbbt/sources/test_organism.rb
199
- - test/rbbt/sources/test_matador.rb
200
- - test/rbbt/sources/test_tfacts.rb
201
- - test/rbbt/sources/test_kegg.rb
202
194
  - test/rbbt/sources/test_synapse.rb
195
+ - test/rbbt/sources/test_entrez.rb
203
196
  - test/rbbt/sources/test_stitch.rb
197
+ - test/rbbt/sources/test_biomart.rb
204
198
  - test/rbbt/sources/test_HPRD.rb
199
+ - test/rbbt/sources/test_string.rb
200
+ - test/rbbt/sources/test_kegg.rb
201
+ - test/rbbt/sources/test_tfacts.rb
202
+ - test/rbbt/sources/test_matador.rb
203
+ - test/rbbt/sources/test_gscholar.rb
204
+ - test/test_helper.rb