rbbt-phgx 0.1.0 → 0.2.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.
- data/lib/phgx.rb +2 -11
- data/lib/rbbt/mutation/fireDB.rb +11 -0
- data/lib/rbbt/mutation/polyphen.rb +172 -0
- data/lib/rbbt/mutation/sift.rb +112 -0
- data/lib/rbbt/mutation/snps_and_go.rb +61 -0
- data/lib/rbbt/sources/biogrid.rb +11 -0
- data/lib/rbbt/sources/cancer.rb +3 -8
- data/lib/rbbt/sources/dbsnp.rb +6 -0
- data/lib/rbbt/sources/hprd.rb +6 -0
- data/lib/rbbt/sources/kegg.rb +2 -5
- data/lib/rbbt/sources/matador.rb +2 -5
- data/lib/rbbt/sources/nci.rb +2 -5
- data/lib/rbbt/sources/pharmagkb.rb +2 -5
- data/lib/rbbt/sources/pina.rb +6 -0
- data/lib/rbbt/sources/reactome.rb +6 -0
- data/lib/rbbt/sources/sift.rb +5 -0
- data/lib/rbbt/sources/stitch.rb +2 -5
- data/lib/rbbt/sources/string.rb +2 -5
- data/share/Cancer/anais_annotations +7949 -0
- data/share/Cancer/anais_interactions +3402 -0
- data/share/Cancer/cancer_genes.tsv +428 -0
- data/share/install/Biogrid/Rakefile +20 -0
- data/share/install/DBSNP/Rakefile +50 -0
- data/share/install/HPRD/Rakefile +15 -0
- data/share/install/KEGG/Rakefile +3 -3
- data/share/install/Matador/Rakefile +2 -2
- data/share/install/NCI/Rakefile +2 -2
- data/share/install/PharmaGKB/Rakefile +17 -14
- data/share/install/Pina/Rakefile +16 -0
- data/share/install/Reactome/Rakefile +36 -0
- data/share/install/STITCH/Rakefile +5 -5
- data/share/install/STRING/Rakefile +2 -2
- data/test/rbbt/mutation/test_fireDB.rb +14 -0
- data/test/rbbt/mutation/test_polyphen.rb +20 -0
- data/test/rbbt/mutation/test_sift.rb +23 -0
- data/test/rbbt/mutation/test_snps_and_go.rb +32 -0
- data/test/rbbt/sources/test_cancer.rb +1 -1
- data/test/rbbt/sources/test_matador.rb +2 -3
- data/test/rbbt/sources/test_pharmagkb.rb +1 -1
- data/test/rbbt/sources/test_stitch.rb +3 -1
- metadata +47 -8
@@ -0,0 +1,15 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__),'../lib/rake_helper')
|
2
|
+
|
3
|
+
|
4
|
+
file :protein_protein do |t|
|
5
|
+
begin
|
6
|
+
tsv = PhGx.share.hprd["BINARY_PROTEIN_PROTEIN_INTERACTIONS.txt"].tsv :merge => true
|
7
|
+
rescue
|
8
|
+
raise "File BINARY_PROTEIN_PROTEIN_INTERACTIONS.txt not found in 'share/hprd', download manually from http://www.hprd.org/"
|
9
|
+
end
|
10
|
+
tsv.key_field = "Associated Gene Name 1"
|
11
|
+
tsv.fields = ["HPRD id 1","RefSeq Protein ID 1","Associated Gene Name 2","HPRD id 2","RefSeq Protein ID 2", "Experiment type", "PMID"]
|
12
|
+
tsv.namespace = "Hsa"
|
13
|
+
|
14
|
+
Open.write(t.name, tsv.to_s)
|
15
|
+
end
|
data/share/install/KEGG/Rakefile
CHANGED
@@ -6,7 +6,7 @@ define_source_tasks "h.sapiens" => "ftp://ftp.genome.jp/pub/kegg/genes/organism
|
|
6
6
|
"pathways" => "ftp://ftp.genome.jp/pub/kegg/pathway/pathway"
|
7
7
|
|
8
8
|
|
9
|
-
file :
|
9
|
+
file :identifiers => 'source/h.sapiens' do |t|
|
10
10
|
pairs = {}
|
11
11
|
entry = nil
|
12
12
|
Open.read(t.prerequisites.first).each do |line|
|
@@ -93,12 +93,12 @@ file :pathways => 'source/pathways' do |t|
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
96
|
-
Open.write(t.name, ['#KEGG Pathway ID', 'Name', 'Description'] * "\t" + "\n" + names.keys.collect{|pathway| [pathway, names[pathway], descs[pathway]] * "\t"} * "\n")
|
96
|
+
Open.write(t.name, ['#KEGG Pathway ID', 'Pathway Name', 'Pathway Description'] * "\t" + "\n" + names.keys.collect{|pathway| [pathway, names[pathway], descs[pathway]] * "\t"} * "\n")
|
97
97
|
end
|
98
98
|
|
99
99
|
process_tsv :gene_pathway, 'hsa_gene_map.tab',
|
100
100
|
:sep2 => ' ' do
|
101
|
-
headers ['KEGG Gene ID', 'KEGG
|
101
|
+
headers ['KEGG Gene ID', 'KEGG Pathway ID']
|
102
102
|
data do |gene, pathway|
|
103
103
|
"hsa:#{ gene }\t#{pathway.flatten.collect{|name| "hsa" + name} * "|"}"
|
104
104
|
end
|
@@ -4,9 +4,9 @@ define_source_tasks "matador" => "http://matador.embl.de/media/download/matador.
|
|
4
4
|
|
5
5
|
|
6
6
|
process_tsv :protein_drug, 'matador',
|
7
|
-
:
|
7
|
+
:key => 3,
|
8
8
|
:fix => lambda{|l| l.sub(/9606./,'')},
|
9
|
-
:
|
9
|
+
:fields => [1,0,7,8,9,10,11,12],
|
10
10
|
:header_hash => "",
|
11
11
|
:keep_empty => true do
|
12
12
|
|
data/share/install/NCI/Rakefile
CHANGED
@@ -62,7 +62,7 @@ file :gene_drug => 'source/gene_drug' do |t|
|
|
62
62
|
end
|
63
63
|
|
64
64
|
File.open(t.name, 'w') do |f|
|
65
|
-
f.puts "#" + ['Associated Gene Name', 'Drugs', 'Drug Concepts', 'Statements', 'PMIDS'] * "\t"
|
65
|
+
f.puts "#" + ['Associated Gene Name', 'Drugs', 'Drug Concepts', 'Drug Statements', 'Drug PMIDS'] * "\t"
|
66
66
|
info.each do |entry, line|
|
67
67
|
f.puts line
|
68
68
|
end
|
@@ -126,7 +126,7 @@ file :gene_cancer => 'source/cancer_gene' do |t|
|
|
126
126
|
end
|
127
127
|
|
128
128
|
File.open(t.name, 'w') do |f|
|
129
|
-
f.puts "#" + ['Associated Gene Name', 'Diseases', 'Disease Concepts', 'Statements', 'PMIDS'] * "\t"
|
129
|
+
f.puts "#" + ['Associated Gene Name', 'Diseases', 'Disease Concepts', 'Disease Statements', 'Disease PMIDS'] * "\t"
|
130
130
|
info.each do |entry, line|
|
131
131
|
f.puts line
|
132
132
|
end
|
@@ -14,7 +14,7 @@ process_tsv :diseases, 'diseases',
|
|
14
14
|
headers ['PhGKB Disease ID']
|
15
15
|
end
|
16
16
|
|
17
|
-
process_tsv :
|
17
|
+
process_tsv :identifiers, 'genes',
|
18
18
|
:header_hash => "",
|
19
19
|
:fix => proc{|l| l.gsub(/","/,'|').gsub(/"/,'').gsub(/,(\t|$)/,'\1')} do
|
20
20
|
headers ['PhGKB Gene ID', 'Entrez Gene ID', 'Ensembl Gene Id', 'UniProt/SwissProt Accession', 'Long Name', 'Associated Gene Name']
|
@@ -22,27 +22,29 @@ end
|
|
22
22
|
|
23
23
|
process_tsv :drugs, 'drugs',
|
24
24
|
:header_hash => "",
|
25
|
-
:
|
25
|
+
:fields => ['Name', 'Cross References'],
|
26
26
|
:fix => proc{|l| l.gsub(/","/,'|').gsub(/"/,'').gsub(/,(\t|$)/,'\1')} do
|
27
|
-
headers ['PhGKB Drug ID', 'Name', '
|
27
|
+
headers ['PhGKB Drug ID', 'Drug Name', 'Cross References', ]
|
28
28
|
end
|
29
29
|
|
30
30
|
|
31
31
|
process_tsv :gene_drug, 'relationships',
|
32
32
|
:select => proc{|l| l =~ /Gene:/ && l =~ /Drug:/},
|
33
|
-
:
|
34
|
-
:
|
33
|
+
:key => 'Entity1_id',
|
34
|
+
:fields => ['Entity2_id','Relationship'],
|
35
35
|
:header_hash => "",
|
36
|
-
:
|
36
|
+
:merge => true,
|
37
|
+
:fix => proc{|l| l.gsub(/Gene:|Drug:|Disease:/,'')},
|
37
38
|
:keep_empty => true do
|
38
39
|
|
39
|
-
headers ['PhGKB Gene ID', 'Drug']
|
40
|
+
headers ['PhGKB Gene ID', 'Drug Name', "Relationship"]
|
40
41
|
end
|
41
42
|
|
42
43
|
process_tsv :gene_disease, 'relationships',
|
43
44
|
:select => proc{|l| l =~ /Gene:/ && l =~ /Disease:/},
|
44
|
-
:
|
45
|
-
:
|
45
|
+
:key => 1,
|
46
|
+
:fields => 3,
|
47
|
+
:merge => true,
|
46
48
|
:header_hash => "",
|
47
49
|
:fix => proc{|l| l.gsub(/Gene:|Drug:|Disease/,'')},
|
48
50
|
:keep_empty => true do
|
@@ -51,18 +53,19 @@ process_tsv :gene_disease, 'relationships',
|
|
51
53
|
end
|
52
54
|
|
53
55
|
process_tsv :variants, 'variants',
|
54
|
-
:
|
55
|
-
:
|
56
|
+
:key => 1,
|
57
|
+
:fields => [3,7,8,9,10,4,6,5],
|
56
58
|
:header_hash => "",
|
59
|
+
:merge => true,
|
57
60
|
:fix => proc{|l| l.gsub(/Gene:|Drug:|Disease/,'')},
|
58
61
|
:keep_empty => true do
|
59
62
|
|
60
|
-
headers ['Variant ID', 'Associated Gene Name', 'Drug', 'Drug_Class', 'Disease', 'Curation', 'Feature', 'Evidence']
|
63
|
+
headers ['Variant ID', 'Associated Gene Name', 'Drug', 'Drug_Class', 'Disease', 'Curation', 'Feature', 'Annotation', 'Evidence']
|
61
64
|
end
|
62
65
|
|
63
66
|
file :pathways => 'source/pathways' do |t|
|
64
67
|
File.open(t.name, 'w') do |f|
|
65
|
-
f.puts "#" + ['PhGKB Pathway ID','Name','Source'] * "\t"
|
68
|
+
f.puts "#" + ['PhGKB Pathway ID','Pathway Name','Pathway Annotation Source'] * "\t"
|
66
69
|
Open.read(t.prerequisites.first).split(/\n/).each do |line|
|
67
70
|
next unless line =~ /(PA\d+): (.*) - \((.*)\)/
|
68
71
|
f.puts [$1,$2,$3] * "\t"
|
@@ -87,7 +90,7 @@ file :gene_pathway => 'source/pathways' do |t|
|
|
87
90
|
end
|
88
91
|
|
89
92
|
File.open(t.name, 'w') do |f|
|
90
|
-
f.puts "#" + ['Pathway ID', 'Name', 'Associated Gene Name'] * "\t"
|
93
|
+
f.puts "#" + ['Pathway ID', 'Pathway Name', 'Associated Gene Name'] * "\t"
|
91
94
|
pathways.each do |pathway, info|
|
92
95
|
next if info[:genes].nil?
|
93
96
|
f.puts "#{ pathway }\t#{info[:name]}\t#{info[:genes] * "|"}"
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__),'../lib/rake_helper')
|
2
|
+
|
3
|
+
define_source_tasks "Homo sapiens-20110225.txt" => "http://csbi.ltdk.helsinki.fi/pina/download/Homo%20sapiens-20110225.txt"
|
4
|
+
|
5
|
+
process_tsv :protein_protein, 'Homo sapiens-20110225.txt',
|
6
|
+
:key => 0,
|
7
|
+
:fix => lambda{|l| l.gsub("uniprotkb:", '').gsub("(gene name)",'').gsub("pubmed:",'').gsub("|", ';;').gsub(/\([^)]+\)/,'')},
|
8
|
+
:fields => [1,6,8],
|
9
|
+
:header_hash => "#",
|
10
|
+
:merge => true,
|
11
|
+
:keep_empty => true do
|
12
|
+
|
13
|
+
headers ['UniProt/SwissProt Accession', 'Interactor UniProt/SwissProt Accession', 'Method', 'PMID']
|
14
|
+
end
|
15
|
+
|
16
|
+
|
@@ -0,0 +1,36 @@
|
|
1
|
+
require File.join(File.dirname(__FILE__),'../lib/rake_helper')
|
2
|
+
|
3
|
+
define_source_tasks "human_ppi" => "http://www.genomeknowledge.org/download/current/homo_sapiens.interactions.txt.gz",
|
4
|
+
"protein_pathway" => "http://www.genomeknowledge.org/download/current/uniprot_2_pathways.stid.txt",
|
5
|
+
"pathway_genesets" => "http://www.genomeknowledge.org/download/current/ReactomePathways.gmt.zip"
|
6
|
+
|
7
|
+
process_tsv :protein_protein, 'human_ppi',
|
8
|
+
:key => 0,
|
9
|
+
:fix => lambda{|l| l.gsub(/\t[a-z ]+:/i,"\t").gsub(/^[a-z ]+:/i,'')},
|
10
|
+
:fields => [3,6,7,8],
|
11
|
+
:header_hash => "#",
|
12
|
+
:merge => true,
|
13
|
+
:keep_empty => true do
|
14
|
+
|
15
|
+
headers ['UniProt/SwissProt Accession', 'Interactor UniProt/SwissProt Accession', 'Interaction Type', 'Reactions Involved', 'Interaction PMIDS']
|
16
|
+
end
|
17
|
+
|
18
|
+
process_tsv :protein_pathway, 'protein_pathway',
|
19
|
+
:key => 0,
|
20
|
+
:fix => lambda{|l| l.gsub(/\t[a-z ]+:/i,"\t").gsub(/^[a-z ]+:/i,'')},
|
21
|
+
:fields => [1,2],
|
22
|
+
:header_hash => "#",
|
23
|
+
:merge => true,
|
24
|
+
:keep_empty => true do
|
25
|
+
|
26
|
+
headers ['UniProt/SwissProt Accession', 'Pathway ID', 'Pathway Description']
|
27
|
+
end
|
28
|
+
|
29
|
+
process_tsv :pathway_genesets, 'pathway_genesets',
|
30
|
+
:key => 0,
|
31
|
+
:fix => lambda{|l| parts = l.split("\t"); [parts[0], parts[2..-1] * "|"] * "\t"},
|
32
|
+
:keep_empty => true do
|
33
|
+
|
34
|
+
headers ['Reactome Pathway Name', 'Associated Gene Name']
|
35
|
+
end
|
36
|
+
|
@@ -4,27 +4,27 @@ define_source_tasks "protein_chemicals" => "http://stitch.embl.de:8080/download/
|
|
4
4
|
"chemicals" => "http://stitch.embl.de:8080/download/chemical.aliases.v2.0.tsv.gz"
|
5
5
|
|
6
6
|
process_tsv :protein_chemical, 'protein_chemicals',
|
7
|
-
:
|
7
|
+
:key => 1,
|
8
8
|
:grep => "9606\.",
|
9
9
|
:fix => lambda{|l| l.sub(/9606\./,'')},
|
10
10
|
:keep_empty => true do
|
11
11
|
|
12
|
-
headers ['Ensembl Protein ID', 'Chemical', 'Score']
|
12
|
+
headers ['Ensembl Protein ID', 'STITCH Chemical ID', 'Score']
|
13
13
|
end
|
14
14
|
|
15
15
|
$grep_re = []
|
16
16
|
process_tsv :chemicals, 'chemicals',
|
17
17
|
:grep => $grep_re,
|
18
|
-
:
|
18
|
+
:key => 0 do
|
19
19
|
|
20
20
|
Rake::Task['protein_chemical'].invoke
|
21
21
|
|
22
22
|
Log.debug "Getting chemicals"
|
23
|
-
chemicals = TSV.new('protein_chemical', :
|
23
|
+
chemicals = TSV.new('protein_chemical', :key => 1, :fields => []).keys
|
24
24
|
Log.debug "Getting chemicals [done]"
|
25
25
|
|
26
26
|
$grep_re.replace chemicals
|
27
27
|
|
28
|
-
headers ['
|
28
|
+
headers ['STITCH Chemical ID', 'Name', 'Source']
|
29
29
|
end
|
30
30
|
|
@@ -2,7 +2,7 @@ require File.join(File.dirname(__FILE__),'../lib/rake_helper')
|
|
2
2
|
|
3
3
|
define_source_tasks "protein_protein" => "http://string-db.org:8080/newstring_download/protein.links.v8.3.txt.gz"
|
4
4
|
|
5
|
-
process_tsv :protein_protein, 'protein_protein', :grep => '9606\.ENSP', :fix => lambda{|l| l.gsub(/9606\./,'')} do
|
6
|
-
headers ['Ensembl Protein ID', 'Ensembl Protein ID', 'Score']
|
5
|
+
process_tsv :protein_protein, 'protein_protein', :grep => '9606\.ENSP', :fix => lambda{|l| l.gsub(/9606\./,'')}, :merge => true, :sep => "\s" do
|
6
|
+
headers ['Ensembl Protein ID', 'Interactor Ensembl Protein ID', 'Score']
|
7
7
|
end
|
8
8
|
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../..', 'test_helper.rb')
|
2
|
+
require 'rbbt/mutation/fireDB'
|
3
|
+
|
4
|
+
class TestFireDB < Test::Unit::TestCase
|
5
|
+
def test_true
|
6
|
+
assert true
|
7
|
+
#accession = "A6NFZ4"
|
8
|
+
#sequence = "MAKMFDLRTKIMIGIGSSLLVAAMVLLSVVFCLYFKVAKALKAAKDPDAVAVKNHNPDKVCWATNSQAKATTMESCPSLQCCEGCRMHASSDSLPPCCCDINEGL"
|
9
|
+
#mutation = "Y34D"
|
10
|
+
|
11
|
+
#puts FireDB.predict(accession, sequence, mutation)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../..', 'test_helper.rb')
|
2
|
+
require 'rbbt/mutation/polyphen'
|
3
|
+
|
4
|
+
class TestPolyphen2 < Test::Unit::TestCase
|
5
|
+
def test_predict_disease
|
6
|
+
accession = "A6NFZ4"
|
7
|
+
mutation = "Y34D"
|
8
|
+
|
9
|
+
puts Polyphen2.predict(accession, mutation)
|
10
|
+
end
|
11
|
+
|
12
|
+
def test_batch
|
13
|
+
query =<<-EOF
|
14
|
+
A6NFZ4 Y34D
|
15
|
+
EOF
|
16
|
+
|
17
|
+
puts Polyphen2::Batch.predict(query)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../..', 'test_helper.rb')
|
2
|
+
require 'rbbt/mutation/sift'
|
3
|
+
|
4
|
+
class TestSIFT < Test::Unit::TestCase
|
5
|
+
|
6
|
+
def test_predict_aminoacid_mutation
|
7
|
+
accession = "NP_001008502"
|
8
|
+
mutation = "Q554P"
|
9
|
+
|
10
|
+
assert_equal "TOLERATED", SIFT.predict_aminoacid_mutation(accession, mutation)[3]
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_predict_aminoacid_mutation_batch
|
14
|
+
accession = "NP_001008502"
|
15
|
+
mutation = "Q554P"
|
16
|
+
|
17
|
+
ddd SIFT.predict_aminoacid_mutation_batch( [[accession, mutation]])
|
18
|
+
assert_equal "TOLERATED", SIFT.predict_aminoacid_mutation_batch( [[accession, mutation]]).first[3]
|
19
|
+
end
|
20
|
+
|
21
|
+
|
22
|
+
end
|
23
|
+
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), '../..', 'test_helper.rb')
|
2
|
+
require 'rbbt/mutation/snps_and_go'
|
3
|
+
|
4
|
+
class TestSNPSandGO < Test::Unit::TestCase
|
5
|
+
def test_parse_mutation
|
6
|
+
assert_equal ['Y','233','W'], SNPSandGO.parse_mutation('Y233W')
|
7
|
+
end
|
8
|
+
|
9
|
+
def test_predict_disease
|
10
|
+
accession = "Q9UGJ1"
|
11
|
+
mutation = "G1556E"
|
12
|
+
|
13
|
+
assert_raise Exception do SNPSandGO.predict(accession, mutation) end
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_predict_disease
|
17
|
+
accession = "A6NFZ4"
|
18
|
+
mutation = "Y34D"
|
19
|
+
|
20
|
+
assert_equal ["Disease", "2"], SNPSandGO.predict(accession, mutation)
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_predict_neutral
|
24
|
+
accession = "A6NGY1"
|
25
|
+
mutation = "G155R"
|
26
|
+
|
27
|
+
assert_equal ["Neutral", "9"], SNPSandGO.predict(accession, mutation)
|
28
|
+
end
|
29
|
+
|
30
|
+
|
31
|
+
end
|
32
|
+
|
@@ -5,7 +5,7 @@ require 'rbbt/sources/cancer'
|
|
5
5
|
|
6
6
|
class TestCancer < Test::Unit::TestCase
|
7
7
|
def test_anais_annotations
|
8
|
-
assert
|
8
|
+
assert Cancer.anais_annotations.tsv['ENSG00000087460']['Tumor Type'].include? 'Adrenocortical'
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
@@ -1,11 +1,10 @@
|
|
1
1
|
require File.expand_path(File.dirname(__FILE__) + '/../../test_helper')
|
2
2
|
require 'test/unit'
|
3
|
-
require 'rbbt/util/tmpfile'
|
4
3
|
require 'rbbt/sources/matador'
|
5
4
|
|
6
5
|
class TestMatador < Test::Unit::TestCase
|
7
|
-
|
8
|
-
assert_equal 'procainamide',
|
6
|
+
def test_matador
|
7
|
+
assert_equal 'procainamide', Matador.protein_drug.tsv['ENSP00000343023']['Chemical'].first
|
9
8
|
end
|
10
9
|
end
|
11
10
|
|
@@ -5,7 +5,7 @@ require 'rbbt/sources/pharmagkb'
|
|
5
5
|
|
6
6
|
class TestPhGKB < Test::Unit::TestCase
|
7
7
|
def test_phgkb
|
8
|
-
assert
|
8
|
+
assert PharmaGKB.variants.tsv['rs25487']['Associated Gene Name'].include? 'XRCC1'
|
9
9
|
end
|
10
10
|
end
|
11
11
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbbt-phgx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 23
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
8
|
+
- 2
|
9
9
|
- 0
|
10
|
-
version: 0.
|
10
|
+
version: 0.2.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Miguel Vazquez
|
@@ -15,10 +15,23 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-07-05 00:00:00 +02:00
|
19
19
|
default_executable:
|
20
|
-
dependencies:
|
21
|
-
|
20
|
+
dependencies:
|
21
|
+
- !ruby/object:Gem::Dependency
|
22
|
+
name: rbbt-util
|
23
|
+
prerelease: false
|
24
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
hash: 3
|
30
|
+
segments:
|
31
|
+
- 0
|
32
|
+
version: "0"
|
33
|
+
type: :runtime
|
34
|
+
version_requirements: *id001
|
22
35
|
description: Pharmaco-genomics related data sources
|
23
36
|
email: miguel.vazquez@fdi.ucm.es
|
24
37
|
executables: []
|
@@ -30,24 +43,46 @@ extra_rdoc_files:
|
|
30
43
|
files:
|
31
44
|
- LICENSE
|
32
45
|
- lib/phgx.rb
|
46
|
+
- lib/rbbt/mutation/fireDB.rb
|
47
|
+
- lib/rbbt/mutation/polyphen.rb
|
48
|
+
- lib/rbbt/mutation/sift.rb
|
49
|
+
- lib/rbbt/mutation/snps_and_go.rb
|
50
|
+
- lib/rbbt/sources/biogrid.rb
|
33
51
|
- lib/rbbt/sources/cancer.rb
|
52
|
+
- lib/rbbt/sources/dbsnp.rb
|
53
|
+
- lib/rbbt/sources/hprd.rb
|
34
54
|
- lib/rbbt/sources/kegg.rb
|
35
55
|
- lib/rbbt/sources/matador.rb
|
36
56
|
- lib/rbbt/sources/nci.rb
|
37
57
|
- lib/rbbt/sources/pharmagkb.rb
|
58
|
+
- lib/rbbt/sources/pina.rb
|
59
|
+
- lib/rbbt/sources/reactome.rb
|
60
|
+
- lib/rbbt/sources/sift.rb
|
38
61
|
- lib/rbbt/sources/stitch.rb
|
39
62
|
- lib/rbbt/sources/string.rb
|
63
|
+
- share/Cancer/anais_annotations
|
64
|
+
- share/Cancer/anais_interactions
|
65
|
+
- share/Cancer/cancer_genes.tsv
|
66
|
+
- share/install/Biogrid/Rakefile
|
67
|
+
- share/install/DBSNP/Rakefile
|
68
|
+
- share/install/HPRD/Rakefile
|
40
69
|
- share/install/KEGG/Rakefile
|
41
70
|
- share/install/Matador/Rakefile
|
42
71
|
- share/install/NCI/Rakefile
|
43
72
|
- share/install/PharmaGKB/Rakefile
|
73
|
+
- share/install/Pina/Rakefile
|
74
|
+
- share/install/Reactome/Rakefile
|
44
75
|
- share/install/STITCH/Rakefile
|
45
76
|
- share/install/STRING/Rakefile
|
46
77
|
- share/install/lib/rake_helper.rb
|
47
|
-
- test/rbbt/sources/test_cancer.rb
|
48
78
|
- test/rbbt/sources/test_matador.rb
|
49
79
|
- test/rbbt/sources/test_pharmagkb.rb
|
50
80
|
- test/rbbt/sources/test_stitch.rb
|
81
|
+
- test/rbbt/sources/test_cancer.rb
|
82
|
+
- test/rbbt/mutation/test_snps_and_go.rb
|
83
|
+
- test/rbbt/mutation/test_fireDB.rb
|
84
|
+
- test/rbbt/mutation/test_sift.rb
|
85
|
+
- test/rbbt/mutation/test_polyphen.rb
|
51
86
|
- test/test_helper.rb
|
52
87
|
has_rdoc: true
|
53
88
|
homepage: http://github.com/mikisvaz/rbbt-phgx
|
@@ -84,8 +119,12 @@ signing_key:
|
|
84
119
|
specification_version: 3
|
85
120
|
summary: Pharmaco-genomics for the Ruby Bioinformatics Toolkit (rbbt)
|
86
121
|
test_files:
|
87
|
-
- test/rbbt/sources/test_cancer.rb
|
88
122
|
- test/rbbt/sources/test_matador.rb
|
89
123
|
- test/rbbt/sources/test_pharmagkb.rb
|
90
124
|
- test/rbbt/sources/test_stitch.rb
|
125
|
+
- test/rbbt/sources/test_cancer.rb
|
126
|
+
- test/rbbt/mutation/test_snps_and_go.rb
|
127
|
+
- test/rbbt/mutation/test_fireDB.rb
|
128
|
+
- test/rbbt/mutation/test_sift.rb
|
129
|
+
- test/rbbt/mutation/test_polyphen.rb
|
91
130
|
- test/test_helper.rb
|