bio-ucsc-api 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/.document +5 -0
  2. data/.rspec +2 -0
  3. data/COPYING +58 -0
  4. data/COPYING.ja +51 -0
  5. data/Gemfile +19 -0
  6. data/Gemfile.lock +49 -0
  7. data/README.rdoc +57 -0
  8. data/Rakefile +72 -0
  9. data/VERSION +1 -0
  10. data/bio-ucsc-api.gemspec +212 -0
  11. data/lib/bio-ucsc.rb +20 -0
  12. data/lib/bio-ucsc/hg18.rb +27 -0
  13. data/lib/bio-ucsc/hg18/activerecord.rb +166 -0
  14. data/lib/bio-ucsc/hg18/cnpiafrate2.rb +31 -0
  15. data/lib/bio-ucsc/hg18/cnplocke.rb +31 -0
  16. data/lib/bio-ucsc/hg18/cnpredon.rb +32 -0
  17. data/lib/bio-ucsc/hg18/cnpsebat2.rb +35 -0
  18. data/lib/bio-ucsc/hg18/cnpsharp2.rb +32 -0
  19. data/lib/bio-ucsc/hg18/db_connection.rb +61 -0
  20. data/lib/bio-ucsc/hg18/dgv.rb +27 -0
  21. data/lib/bio-ucsc/hg18/refgene.rb +27 -0
  22. data/lib/bio-ucsc/hg18/rmsk.rb +51 -0
  23. data/lib/bio-ucsc/hg18/tables.rb +142 -0
  24. data/lib/bio-ucsc/hg19.rb +54 -0
  25. data/lib/bio-ucsc/hg19/activerecord.rb +217 -0
  26. data/lib/bio-ucsc/hg19/ccdsgene.rb +33 -0
  27. data/lib/bio-ucsc/hg19/cytoband.rb +33 -0
  28. data/lib/bio-ucsc/hg19/db_connection.rb +61 -0
  29. data/lib/bio-ucsc/hg19/dgv.rb +27 -0
  30. data/lib/bio-ucsc/hg19/ensgene.rb +21 -0
  31. data/lib/bio-ucsc/hg19/gwascatalog.rb +26 -0
  32. data/lib/bio-ucsc/hg19/hapmapalleleschimp.rb +35 -0
  33. data/lib/bio-ucsc/hg19/hapmapallelesmacaque.rb +35 -0
  34. data/lib/bio-ucsc/hg19/hapmapsnpsasw.rb +33 -0
  35. data/lib/bio-ucsc/hg19/hapmapsnpsceu.rb +33 -0
  36. data/lib/bio-ucsc/hg19/hapmapsnpschb.rb +33 -0
  37. data/lib/bio-ucsc/hg19/hapmapsnpschd.rb +33 -0
  38. data/lib/bio-ucsc/hg19/hapmapsnpsgih.rb +34 -0
  39. data/lib/bio-ucsc/hg19/hapmapsnpsjpt.rb +34 -0
  40. data/lib/bio-ucsc/hg19/hapmapsnpslwk.rb +35 -0
  41. data/lib/bio-ucsc/hg19/hapmapsnpsmex.rb +35 -0
  42. data/lib/bio-ucsc/hg19/hapmapsnpsmkk.rb +35 -0
  43. data/lib/bio-ucsc/hg19/hapmapsnpstsi.rb +35 -0
  44. data/lib/bio-ucsc/hg19/hapmapsnpsyri.rb +35 -0
  45. data/lib/bio-ucsc/hg19/knowngene.rb +34 -0
  46. data/lib/bio-ucsc/hg19/omimgene.rb +25 -0
  47. data/lib/bio-ucsc/hg19/phastconselements46wayprimates.rb +27 -0
  48. data/lib/bio-ucsc/hg19/phylop46wayprimates.rb +27 -0
  49. data/lib/bio-ucsc/hg19/refgene.rb +27 -0
  50. data/lib/bio-ucsc/hg19/rmsk.rb +32 -0
  51. data/lib/bio-ucsc/hg19/snp131.rb +30 -0
  52. data/lib/bio-ucsc/hg19/snp132.rb +31 -0
  53. data/lib/bio-ucsc/hg19/snp132codingdbsnp.rb +29 -0
  54. data/lib/bio-ucsc/hg19/snp132common.rb +32 -0
  55. data/lib/bio-ucsc/hg19/snp132flagged.rb +31 -0
  56. data/lib/bio-ucsc/hg19/snp132mult.rb +32 -0
  57. data/lib/bio-ucsc/hg19/wgrna.rb +29 -0
  58. data/lib/bio-ucsc/ucsc_bin.rb +148 -0
  59. data/samples/hg19-sample.rb +66 -0
  60. data/spec/hg18/cnpiafrate2_spec.rb +23 -0
  61. data/spec/hg18/cnplocke_spec.rb +23 -0
  62. data/spec/hg18/cnpredon_spec.rb +23 -0
  63. data/spec/hg18/cnpsebat2_spec.rb +23 -0
  64. data/spec/hg18/cnpsharp2_spec.rb +23 -0
  65. data/spec/hg18/db_connection_spec.rb +36 -0
  66. data/spec/hg18/dgv_spec.rb +23 -0
  67. data/spec/hg18/refgene_spec.rb +23 -0
  68. data/spec/hg18/rmsk_spec.rb +33 -0
  69. data/spec/hg19/ccdsgene_spec.rb +23 -0
  70. data/spec/hg19/cytoband_spec.rb +23 -0
  71. data/spec/hg19/db_connection_spec.rb +37 -0
  72. data/spec/hg19/dgv_spec.rb +23 -0
  73. data/spec/hg19/ensgene_spec.rb +23 -0
  74. data/spec/hg19/gwascatalog_spec.rb +23 -0
  75. data/spec/hg19/hapmapalleleschimp_spec.rb +23 -0
  76. data/spec/hg19/hapmapallelesmacaque_spec.rb +23 -0
  77. data/spec/hg19/hapmapsnpsasw_spec.rb +23 -0
  78. data/spec/hg19/hapmapsnpsceu_spec.rb +23 -0
  79. data/spec/hg19/hapmapsnpschb_spec.rb +23 -0
  80. data/spec/hg19/hapmapsnpschd_spec.rb +23 -0
  81. data/spec/hg19/hapmapsnpsgih_spec.rb +23 -0
  82. data/spec/hg19/hapmapsnpsjpt_spec.rb +23 -0
  83. data/spec/hg19/hapmapsnpslwk_spec.rb +23 -0
  84. data/spec/hg19/hapmapsnpsmex_spec.rb +23 -0
  85. data/spec/hg19/hapmapsnpsmkk_spec.rb +23 -0
  86. data/spec/hg19/hapmapsnpstsi_spec.rb +23 -0
  87. data/spec/hg19/hapmapsnpsyri_spec.rb +23 -0
  88. data/spec/hg19/knowngene_spec.rb +23 -0
  89. data/spec/hg19/omimGene_spec.rb +23 -0
  90. data/spec/hg19/phastconselements46wayprimates_spec.rb +23 -0
  91. data/spec/hg19/phyloP46wayPrimates_spec.rb +23 -0
  92. data/spec/hg19/refgene_spec.rb +23 -0
  93. data/spec/hg19/rmsk_spec.rb +23 -0
  94. data/spec/hg19/snp132Flagged_spec.rb +24 -0
  95. data/spec/hg19/snp132_spec.rb +23 -0
  96. data/spec/hg19/snp132codingdbsnp_spec.rb +23 -0
  97. data/spec/hg19/snp132common_spec.rb +24 -0
  98. data/spec/hg19/snp132mult_spec.rb +23 -0
  99. data/spec/hg19/wgrna_spec.rb +23 -0
  100. data/spec/spec_helper.rb +12 -0
  101. metadata +368 -0
@@ -0,0 +1,23 @@
1
+ require 'bio-ucsc'
2
+ describe "Bio::Ucsc::Hg19::Snp132Mult" do
3
+
4
+ describe "#find_by_interval" do
5
+ context "given range chr1:1-12,000" do
6
+ it "returens an array of results" do
7
+ Bio::Ucsc::Hg19::DBConnection.default
8
+ Bio::Ucsc::Hg19::DBConnection.connect
9
+ i = Bio::GenomicInterval.parse("chr1:1-12,000")
10
+ Bio::Ucsc::Hg19::Snp132Mult.find_by_interval(i).should have(51).items
11
+ end
12
+
13
+ it "returens an array of results with column accessors" do
14
+ Bio::Ucsc::Hg19::DBConnection.default
15
+ Bio::Ucsc::Hg19::DBConnection.connect
16
+ i = Bio::GenomicInterval.parse("chr1:1-12,000")
17
+ r = Bio::Ucsc::Hg19::Snp132Mult.find_by_interval(i)
18
+ r[0].chrom.should == "chr1"
19
+ end
20
+ end
21
+ end
22
+
23
+ end
@@ -0,0 +1,23 @@
1
+ require 'bio-ucsc'
2
+ describe "Bio::Ucsc::Hg19::WgRna" do
3
+
4
+ describe "#find_by_slice" do
5
+ context "given range chr1:1-1,000,000" do
6
+ it "returens an array of results" do
7
+ Bio::Ucsc::Hg19::DBConnection.default
8
+ Bio::Ucsc::Hg19::DBConnection.connect
9
+ i = Bio::GenomicInterval.parse("chr1:1-1,000,000")
10
+ Bio::Ucsc::Hg19::WgRna.find_by_interval(i).should have(1).items
11
+ end
12
+
13
+ it "returens an array of results with column accessors" do
14
+ Bio::Ucsc::Hg19::DBConnection.default
15
+ Bio::Ucsc::Hg19::DBConnection.connect
16
+ i = Bio::GenomicInterval.parse("chr1:1-1,000,000")
17
+ r = Bio::Ucsc::Hg19::WgRna.find_by_interval(i)
18
+ r[0].chrom.should == "chr1"
19
+ end
20
+ end
21
+ end
22
+
23
+ end
@@ -0,0 +1,12 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ #require 'cover_me'
5
+
6
+ # Requires supporting files with custom matchers and macros, etc,
7
+ # in ./support/ and its subdirectories.
8
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
9
+
10
+ RSpec.configure do |config|
11
+
12
+ end
metadata ADDED
@@ -0,0 +1,368 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bio-ucsc-api
3
+ version: !ruby/object:Gem::Version
4
+ prerelease: false
5
+ segments:
6
+ - 0
7
+ - 0
8
+ - 1
9
+ version: 0.0.1
10
+ platform: ruby
11
+ authors:
12
+ - MISHIMA, Hiroyuki
13
+ - Francesco Strozzi
14
+ - Jan Aerts
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2011-04-22 00:00:00 +09:00
20
+ default_executable:
21
+ dependencies:
22
+ - !ruby/object:Gem::Dependency
23
+ name: activerecord
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ segments:
30
+ - 3
31
+ - 0
32
+ - 7
33
+ version: 3.0.7
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: mysql
39
+ requirement: &id002 !ruby/object:Gem::Requirement
40
+ none: false
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ segments:
45
+ - 2
46
+ - 8
47
+ - 1
48
+ version: 2.8.1
49
+ type: :runtime
50
+ prerelease: false
51
+ version_requirements: *id002
52
+ - !ruby/object:Gem::Dependency
53
+ name: bio-genomic-interval
54
+ requirement: &id003 !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ segments:
60
+ - 0
61
+ - 1
62
+ - 2
63
+ version: 0.1.2
64
+ type: :runtime
65
+ prerelease: false
66
+ version_requirements: *id003
67
+ - !ruby/object:Gem::Dependency
68
+ name: rspec
69
+ requirement: &id004 !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ~>
73
+ - !ruby/object:Gem::Version
74
+ segments:
75
+ - 2
76
+ - 5
77
+ - 0
78
+ version: 2.5.0
79
+ type: :development
80
+ prerelease: false
81
+ version_requirements: *id004
82
+ - !ruby/object:Gem::Dependency
83
+ name: bundler
84
+ requirement: &id005 !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ~>
88
+ - !ruby/object:Gem::Version
89
+ segments:
90
+ - 1
91
+ - 0
92
+ - 0
93
+ version: 1.0.0
94
+ type: :development
95
+ prerelease: false
96
+ version_requirements: *id005
97
+ - !ruby/object:Gem::Dependency
98
+ name: jeweler
99
+ requirement: &id006 !ruby/object:Gem::Requirement
100
+ none: false
101
+ requirements:
102
+ - - ~>
103
+ - !ruby/object:Gem::Version
104
+ segments:
105
+ - 1
106
+ - 5
107
+ - 2
108
+ version: 1.5.2
109
+ type: :development
110
+ prerelease: false
111
+ version_requirements: *id006
112
+ - !ruby/object:Gem::Dependency
113
+ name: rcov
114
+ requirement: &id007 !ruby/object:Gem::Requirement
115
+ none: false
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ segments:
120
+ - 0
121
+ version: "0"
122
+ type: :development
123
+ prerelease: false
124
+ version_requirements: *id007
125
+ - !ruby/object:Gem::Dependency
126
+ name: bio
127
+ requirement: &id008 !ruby/object:Gem::Requirement
128
+ none: false
129
+ requirements:
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ segments:
133
+ - 1
134
+ - 4
135
+ - 1
136
+ version: 1.4.1
137
+ type: :development
138
+ prerelease: false
139
+ version_requirements: *id008
140
+ - !ruby/object:Gem::Dependency
141
+ name: activerecord
142
+ requirement: &id009 !ruby/object:Gem::Requirement
143
+ none: false
144
+ requirements:
145
+ - - ">="
146
+ - !ruby/object:Gem::Version
147
+ segments:
148
+ - 3
149
+ - 0
150
+ - 0
151
+ version: 3.0.0
152
+ type: :runtime
153
+ prerelease: false
154
+ version_requirements: *id009
155
+ - !ruby/object:Gem::Dependency
156
+ name: activesupport
157
+ requirement: &id010 !ruby/object:Gem::Requirement
158
+ none: false
159
+ requirements:
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ segments:
163
+ - 3
164
+ - 0
165
+ - 0
166
+ version: 3.0.0
167
+ type: :runtime
168
+ prerelease: false
169
+ version_requirements: *id010
170
+ - !ruby/object:Gem::Dependency
171
+ name: bio-genomic-interval
172
+ requirement: &id011 !ruby/object:Gem::Requirement
173
+ none: false
174
+ requirements:
175
+ - - ">="
176
+ - !ruby/object:Gem::Version
177
+ segments:
178
+ - 0
179
+ - 1
180
+ - 1
181
+ version: 0.1.1
182
+ type: :runtime
183
+ prerelease: false
184
+ version_requirements: *id011
185
+ description: "A Bioruby plugin: an API for UCSC Genome Browser (experimental)"
186
+ email: missy@be.to
187
+ executables: []
188
+
189
+ extensions: []
190
+
191
+ extra_rdoc_files:
192
+ - README.rdoc
193
+ files:
194
+ - .document
195
+ - .rspec
196
+ - COPYING
197
+ - COPYING.ja
198
+ - Gemfile
199
+ - Gemfile.lock
200
+ - README.rdoc
201
+ - Rakefile
202
+ - VERSION
203
+ - bio-ucsc-api.gemspec
204
+ - lib/bio-ucsc.rb
205
+ - lib/bio-ucsc/hg18.rb
206
+ - lib/bio-ucsc/hg18/activerecord.rb
207
+ - lib/bio-ucsc/hg18/cnpiafrate2.rb
208
+ - lib/bio-ucsc/hg18/cnplocke.rb
209
+ - lib/bio-ucsc/hg18/cnpredon.rb
210
+ - lib/bio-ucsc/hg18/cnpsebat2.rb
211
+ - lib/bio-ucsc/hg18/cnpsharp2.rb
212
+ - lib/bio-ucsc/hg18/db_connection.rb
213
+ - lib/bio-ucsc/hg18/dgv.rb
214
+ - lib/bio-ucsc/hg18/refgene.rb
215
+ - lib/bio-ucsc/hg18/rmsk.rb
216
+ - lib/bio-ucsc/hg18/tables.rb
217
+ - lib/bio-ucsc/hg19.rb
218
+ - lib/bio-ucsc/hg19/activerecord.rb
219
+ - lib/bio-ucsc/hg19/ccdsgene.rb
220
+ - lib/bio-ucsc/hg19/cytoband.rb
221
+ - lib/bio-ucsc/hg19/db_connection.rb
222
+ - lib/bio-ucsc/hg19/dgv.rb
223
+ - lib/bio-ucsc/hg19/ensgene.rb
224
+ - lib/bio-ucsc/hg19/gwascatalog.rb
225
+ - lib/bio-ucsc/hg19/hapmapalleleschimp.rb
226
+ - lib/bio-ucsc/hg19/hapmapallelesmacaque.rb
227
+ - lib/bio-ucsc/hg19/hapmapsnpsasw.rb
228
+ - lib/bio-ucsc/hg19/hapmapsnpsceu.rb
229
+ - lib/bio-ucsc/hg19/hapmapsnpschb.rb
230
+ - lib/bio-ucsc/hg19/hapmapsnpschd.rb
231
+ - lib/bio-ucsc/hg19/hapmapsnpsgih.rb
232
+ - lib/bio-ucsc/hg19/hapmapsnpsjpt.rb
233
+ - lib/bio-ucsc/hg19/hapmapsnpslwk.rb
234
+ - lib/bio-ucsc/hg19/hapmapsnpsmex.rb
235
+ - lib/bio-ucsc/hg19/hapmapsnpsmkk.rb
236
+ - lib/bio-ucsc/hg19/hapmapsnpstsi.rb
237
+ - lib/bio-ucsc/hg19/hapmapsnpsyri.rb
238
+ - lib/bio-ucsc/hg19/knowngene.rb
239
+ - lib/bio-ucsc/hg19/omimgene.rb
240
+ - lib/bio-ucsc/hg19/phastconselements46wayprimates.rb
241
+ - lib/bio-ucsc/hg19/phylop46wayprimates.rb
242
+ - lib/bio-ucsc/hg19/refgene.rb
243
+ - lib/bio-ucsc/hg19/rmsk.rb
244
+ - lib/bio-ucsc/hg19/snp131.rb
245
+ - lib/bio-ucsc/hg19/snp132.rb
246
+ - lib/bio-ucsc/hg19/snp132codingdbsnp.rb
247
+ - lib/bio-ucsc/hg19/snp132common.rb
248
+ - lib/bio-ucsc/hg19/snp132flagged.rb
249
+ - lib/bio-ucsc/hg19/snp132mult.rb
250
+ - lib/bio-ucsc/hg19/wgrna.rb
251
+ - lib/bio-ucsc/ucsc_bin.rb
252
+ - samples/hg19-sample.rb
253
+ - spec/hg18/cnpiafrate2_spec.rb
254
+ - spec/hg18/cnplocke_spec.rb
255
+ - spec/hg18/cnpredon_spec.rb
256
+ - spec/hg18/cnpsebat2_spec.rb
257
+ - spec/hg18/cnpsharp2_spec.rb
258
+ - spec/hg18/db_connection_spec.rb
259
+ - spec/hg18/dgv_spec.rb
260
+ - spec/hg18/refgene_spec.rb
261
+ - spec/hg18/rmsk_spec.rb
262
+ - spec/hg19/ccdsgene_spec.rb
263
+ - spec/hg19/cytoband_spec.rb
264
+ - spec/hg19/db_connection_spec.rb
265
+ - spec/hg19/dgv_spec.rb
266
+ - spec/hg19/ensgene_spec.rb
267
+ - spec/hg19/gwascatalog_spec.rb
268
+ - spec/hg19/hapmapalleleschimp_spec.rb
269
+ - spec/hg19/hapmapallelesmacaque_spec.rb
270
+ - spec/hg19/hapmapsnpsasw_spec.rb
271
+ - spec/hg19/hapmapsnpsceu_spec.rb
272
+ - spec/hg19/hapmapsnpschb_spec.rb
273
+ - spec/hg19/hapmapsnpschd_spec.rb
274
+ - spec/hg19/hapmapsnpsgih_spec.rb
275
+ - spec/hg19/hapmapsnpsjpt_spec.rb
276
+ - spec/hg19/hapmapsnpslwk_spec.rb
277
+ - spec/hg19/hapmapsnpsmex_spec.rb
278
+ - spec/hg19/hapmapsnpsmkk_spec.rb
279
+ - spec/hg19/hapmapsnpstsi_spec.rb
280
+ - spec/hg19/hapmapsnpsyri_spec.rb
281
+ - spec/hg19/knowngene_spec.rb
282
+ - spec/hg19/omimGene_spec.rb
283
+ - spec/hg19/phastconselements46wayprimates_spec.rb
284
+ - spec/hg19/phyloP46wayPrimates_spec.rb
285
+ - spec/hg19/refgene_spec.rb
286
+ - spec/hg19/rmsk_spec.rb
287
+ - spec/hg19/snp132Flagged_spec.rb
288
+ - spec/hg19/snp132_spec.rb
289
+ - spec/hg19/snp132codingdbsnp_spec.rb
290
+ - spec/hg19/snp132common_spec.rb
291
+ - spec/hg19/snp132mult_spec.rb
292
+ - spec/hg19/wgrna_spec.rb
293
+ - spec/spec_helper.rb
294
+ has_rdoc: true
295
+ homepage: http://github.com/misshie/bioruby-ucsc-api
296
+ licenses:
297
+ - Ruby (Ruby's/GPLv2 dual)
298
+ post_install_message:
299
+ rdoc_options: []
300
+
301
+ require_paths:
302
+ - lib
303
+ required_ruby_version: !ruby/object:Gem::Requirement
304
+ none: false
305
+ requirements:
306
+ - - ">="
307
+ - !ruby/object:Gem::Version
308
+ hash: -300095872068821190
309
+ segments:
310
+ - 0
311
+ version: "0"
312
+ required_rubygems_version: !ruby/object:Gem::Requirement
313
+ none: false
314
+ requirements:
315
+ - - ">="
316
+ - !ruby/object:Gem::Version
317
+ segments:
318
+ - 0
319
+ version: "0"
320
+ requirements: []
321
+
322
+ rubyforge_project:
323
+ rubygems_version: 1.3.7
324
+ signing_key:
325
+ specification_version: 3
326
+ summary: "A Bioruby plugin: an API for UCSC Genome Browser (experimental)"
327
+ test_files:
328
+ - spec/hg18/cnpiafrate2_spec.rb
329
+ - spec/hg18/cnplocke_spec.rb
330
+ - spec/hg18/cnpredon_spec.rb
331
+ - spec/hg18/cnpsebat2_spec.rb
332
+ - spec/hg18/cnpsharp2_spec.rb
333
+ - spec/hg18/db_connection_spec.rb
334
+ - spec/hg18/dgv_spec.rb
335
+ - spec/hg18/refgene_spec.rb
336
+ - spec/hg18/rmsk_spec.rb
337
+ - spec/hg19/ccdsgene_spec.rb
338
+ - spec/hg19/cytoband_spec.rb
339
+ - spec/hg19/db_connection_spec.rb
340
+ - spec/hg19/dgv_spec.rb
341
+ - spec/hg19/ensgene_spec.rb
342
+ - spec/hg19/gwascatalog_spec.rb
343
+ - spec/hg19/hapmapalleleschimp_spec.rb
344
+ - spec/hg19/hapmapallelesmacaque_spec.rb
345
+ - spec/hg19/hapmapsnpsasw_spec.rb
346
+ - spec/hg19/hapmapsnpsceu_spec.rb
347
+ - spec/hg19/hapmapsnpschb_spec.rb
348
+ - spec/hg19/hapmapsnpschd_spec.rb
349
+ - spec/hg19/hapmapsnpsgih_spec.rb
350
+ - spec/hg19/hapmapsnpsjpt_spec.rb
351
+ - spec/hg19/hapmapsnpslwk_spec.rb
352
+ - spec/hg19/hapmapsnpsmex_spec.rb
353
+ - spec/hg19/hapmapsnpsmkk_spec.rb
354
+ - spec/hg19/hapmapsnpstsi_spec.rb
355
+ - spec/hg19/hapmapsnpsyri_spec.rb
356
+ - spec/hg19/knowngene_spec.rb
357
+ - spec/hg19/omimGene_spec.rb
358
+ - spec/hg19/phastconselements46wayprimates_spec.rb
359
+ - spec/hg19/phyloP46wayPrimates_spec.rb
360
+ - spec/hg19/refgene_spec.rb
361
+ - spec/hg19/rmsk_spec.rb
362
+ - spec/hg19/snp132Flagged_spec.rb
363
+ - spec/hg19/snp132_spec.rb
364
+ - spec/hg19/snp132codingdbsnp_spec.rb
365
+ - spec/hg19/snp132common_spec.rb
366
+ - spec/hg19/snp132mult_spec.rb
367
+ - spec/hg19/wgrna_spec.rb
368
+ - spec/spec_helper.rb