rbbt-sources 3.3.0 → 3.4.1

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.
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.3.0
4
+ version: 3.4.1
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-12-21 00:00:00.000000000 Z
11
+ date: 2025-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rbbt-util
@@ -95,6 +95,7 @@ files:
95
95
  - lib/rbbt/sources/jochem.rb
96
96
  - lib/rbbt/sources/kegg.rb
97
97
  - lib/rbbt/sources/matador.rb
98
+ - lib/rbbt/sources/mesh.rb
98
99
  - lib/rbbt/sources/oncodrive_role.rb
99
100
  - lib/rbbt/sources/oreganno.rb
100
101
  - lib/rbbt/sources/organism.rb
@@ -119,10 +120,10 @@ files:
119
120
  - share/install/KEGG/Rakefile
120
121
  - share/install/Matador/Rakefile
121
122
  - share/install/NCI/Rakefile
122
- - share/install/Organism/Hsa/Rakefile
123
- - share/install/Organism/Mmu/Rakefile
124
- - share/install/Organism/Rno/Rakefile
125
- - share/install/Organism/Sce/Rakefile
123
+ - share/install/Organism/Hsa.rake
124
+ - share/install/Organism/Mmu.rake
125
+ - share/install/Organism/Rno.rake
126
+ - share/install/Organism/Sce.rake
126
127
  - share/install/Organism/organism_helpers.rb
127
128
  - share/install/PharmaGKB/Rakefile
128
129
  - share/install/Pina/Rakefile
@@ -132,11 +133,13 @@ files:
132
133
  - share/install/lib/rake_helper.rb
133
134
  - test/rbbt/sources/test_HPRD.rb
134
135
  - test/rbbt/sources/test_biomart.rb
136
+ - test/rbbt/sources/test_ensembl_ftp.rb
135
137
  - test/rbbt/sources/test_entrez.rb
136
138
  - test/rbbt/sources/test_go.rb
137
139
  - test/rbbt/sources/test_gscholar.rb
138
140
  - test/rbbt/sources/test_kegg.rb
139
141
  - test/rbbt/sources/test_matador.rb
142
+ - test/rbbt/sources/test_mesh.rb
140
143
  - test/rbbt/sources/test_organism.rb
141
144
  - test/rbbt/sources/test_pharmagkb.rb
142
145
  - test/rbbt/sources/test_pina.rb
@@ -164,18 +167,20 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
167
  - !ruby/object:Gem::Version
165
168
  version: '0'
166
169
  requirements: []
167
- rubygems_version: 3.5.0.dev
170
+ rubygems_version: 3.5.23
168
171
  signing_key:
169
172
  specification_version: 4
170
173
  summary: Data sources for the Ruby Bioinformatics Toolkit (rbbt)
171
174
  test_files:
172
175
  - test/rbbt/sources/test_HPRD.rb
173
176
  - test/rbbt/sources/test_biomart.rb
177
+ - test/rbbt/sources/test_ensembl_ftp.rb
174
178
  - test/rbbt/sources/test_entrez.rb
175
179
  - test/rbbt/sources/test_go.rb
176
180
  - test/rbbt/sources/test_gscholar.rb
177
181
  - test/rbbt/sources/test_kegg.rb
178
182
  - test/rbbt/sources/test_matador.rb
183
+ - test/rbbt/sources/test_mesh.rb
179
184
  - test/rbbt/sources/test_organism.rb
180
185
  - test/rbbt/sources/test_pharmagkb.rb
181
186
  - test/rbbt/sources/test_pina.rb
@@ -1,52 +0,0 @@
1
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__),'..', '..', '..', '..', 'lib'))
2
- require 'rbbt/sources/biomart'
3
- require 'rbbt/sources/entrez'
4
- require File.join(File.dirname(__FILE__), '../../lib/helpers')
5
-
6
- $taxs = [559292,4932]
7
- $scientific_name = "Saccharomyces cerevisiae"
8
- #$ortholog_key = "yeast_ensembl_gene"
9
-
10
- $biomart_db = 'scerevisiae_gene_ensembl'
11
-
12
- $biomart_lexicon = [
13
- [ 'Associated Gene Name' , "external_gene_id"],
14
- ]
15
-
16
- $biomart_protein_identifiers = [
17
- [ 'Protein ID', "protein_id" ],
18
- [ 'RefSeq Protein ID', "refseq_peptide" ],
19
- [ 'Unigene ID', "unigene" ],
20
- [ 'UniProt/SwissProt ID', "uniprot_swissprot" ],
21
- [ 'UniProt/SwissProt Accession', "uniprot_swissprot_accession" ],
22
- ]
23
-
24
- $biomart_probe_identifiers = [
25
- ]
26
-
27
- $biomart_identifiers = [
28
- [ 'Entrez Gene ID', "entrezgene"],
29
- [ 'Ensembl Protein ID', "ensembl_peptide_id" ],
30
- [ 'Associated Gene Name', "external_gene_id" ],
31
- [ 'Protein ID', "protein_id" ],
32
- [ 'RefSeq Protein ID', "refseq_peptide" ],
33
- [ 'UniProt/SwissProt ID', "uniprot_swissprot" ],
34
- [ 'UniProt/SwissProt Accession', "uniprot_swissprot_accession" ],
35
- [ 'EMBL (Genbank) ID' , "embl"] ,
36
- [ 'RefSeq mRNA' , "refseq_mrna"] ,
37
- ]
38
-
39
- $biomart_go= [
40
- ["GO ID", 'go_id'],
41
- ["GO Namespace", 'namespace_1003'],
42
- ]
43
-
44
- $biomart_go_2009= [
45
- ["GO BP ID", 'go_biological_process_id'],
46
- ["GO MF ID", 'go_molecular_function_id'],
47
- ["GO CC ID", 'go_cellular_component_id'],
48
- ]
49
-
50
- $namespace = File.basename(File.dirname(File.expand_path(__FILE__)))
51
- Thread.current["namespace"] = File.basename(File.dirname(File.expand_path(__FILE__)))
52
- load File.join(File.dirname(__FILE__), '../organism_helpers.rb')