bio 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/Changes-0.7.rd +34 -13
- data/doc/Tutorial.rd.ja +16 -4
- data/lib/bio.rb +4 -17
- data/lib/bio/db.rb +8 -16
- data/lib/bio/db/pdb/atom.rb +40 -7
- data/lib/bio/db/pdb/chain.rb +152 -53
- data/lib/bio/db/pdb/model.rb +91 -39
- data/lib/bio/db/pdb/pdb.rb +431 -275
- data/lib/bio/db/pdb/residue.rb +114 -50
- data/lib/bio/db/pdb/utils.rb +245 -64
- data/lib/bio/sequence.rb +3 -3
- data/lib/bio/util/sirna.rb +3 -3
- data/test/functional/bio/io/test_soapwsdl.rb +64 -0
- data/test/runner.rb +5 -1
- data/test/unit/bio/db/test_rebase.rb +115 -0
- data/test/unit/bio/util/test_sirna.rb +10 -10
- metadata +274 -266
data/lib/bio/sequence.rb
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
# Naohisa Goto <ng@bioruby.org>
|
8
8
|
# License:: LGPL
|
9
9
|
#
|
10
|
-
# $Id: sequence.rb,v 0.
|
10
|
+
# $Id: sequence.rb,v 0.50 2006/01/20 09:58:31 k Exp $
|
11
11
|
#
|
12
12
|
#--
|
13
13
|
# *TODO* remove this functionality?
|
@@ -516,8 +516,8 @@ if __FILE__ == $0
|
|
516
516
|
p rna.translate
|
517
517
|
|
518
518
|
puts "\n== Test Bio::Sequence::NA#gc_percent"
|
519
|
-
p na.
|
520
|
-
p rna.
|
519
|
+
p na.gc_percent
|
520
|
+
p rna.gc_percent
|
521
521
|
|
522
522
|
puts "\n== Test Bio::Sequence::NA#illegal_bases"
|
523
523
|
p na.illegal_bases
|
data/lib/bio/util/sirna.rb
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
# Itoshi NIKAIDO <dritoshi@gmail.com>
|
6
6
|
# License:: LGPL
|
7
7
|
#
|
8
|
-
# $Id: sirna.rb,v 1.
|
8
|
+
# $Id: sirna.rb,v 1.7 2005/12/27 17:27:38 k Exp $
|
9
9
|
#
|
10
10
|
# == Bio::SiRNA - Designing siRNA.
|
11
11
|
#
|
@@ -201,10 +201,10 @@ module Bio
|
|
201
201
|
# Designing shRNA.
|
202
202
|
class ShRNA
|
203
203
|
|
204
|
-
#
|
204
|
+
# Bio::Sequence::NA
|
205
205
|
attr_accessor :top_strand
|
206
206
|
|
207
|
-
#
|
207
|
+
# Bio::Sequence::NA
|
208
208
|
attr_accessor :bottom_strand
|
209
209
|
|
210
210
|
# Input is a Bio::SiRNA::Pair object (the target sequence).
|
@@ -0,0 +1,64 @@
|
|
1
|
+
#
|
2
|
+
# test/functional/bio/io/test_soapwsdl.rb - Unit test for SOAP/WSDL
|
3
|
+
#
|
4
|
+
# Copyright (C) 2005 Mitsuteru Nakao <n@bioruby.org>
|
5
|
+
#
|
6
|
+
# This library is free software; you can redistribute it and/or
|
7
|
+
# modify it under the terms of the GNU Lesser General Public
|
8
|
+
# License as published by the Free Software Foundation; either
|
9
|
+
# version 2 of the License, or (at your option) any later version.
|
10
|
+
#
|
11
|
+
# This library is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
+
# Lesser General Public License for more details.
|
15
|
+
#
|
16
|
+
# You should have received a copy of the GNU Lesser General Public
|
17
|
+
# License along with this library; if not, write to the Free Software
|
18
|
+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
|
+
#
|
20
|
+
# $Id: test_soapwsdl.rb,v 1.2 2006/01/20 12:04:03 k Exp $
|
21
|
+
#
|
22
|
+
|
23
|
+
require 'pathname'
|
24
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 4, 'lib')).cleanpath.to_s
|
25
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
26
|
+
|
27
|
+
|
28
|
+
require 'test/unit'
|
29
|
+
require 'bio/io/soapwsdl'
|
30
|
+
|
31
|
+
module Bio
|
32
|
+
|
33
|
+
class FuncTestSOAPWSDL < Test::Unit::TestCase
|
34
|
+
|
35
|
+
def setup
|
36
|
+
@wsdl = 'http://www.ebi.ac.uk/xembl/XEMBL.wsdl'
|
37
|
+
@obj = Bio::SOAPWSDL.new(@wsdl)
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_wsdl
|
41
|
+
assert_equal(@wsdl, @obj.wsdl)
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_set_wsdl
|
45
|
+
@obj.wsdl = 'http://soap.genome.jp/KEGG.wsdl'
|
46
|
+
assert_equal('http://soap.genome.jp/KEGG.wsdl', @obj.wsdl)
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_log
|
50
|
+
assert_equal(nil, @obj.log)
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_set_log
|
54
|
+
require 'stringio'
|
55
|
+
io = StringIO.new
|
56
|
+
@obj.log = io
|
57
|
+
|
58
|
+
assert_equal(StringIO, @obj.log.class)
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
|
data/test/runner.rb
CHANGED
@@ -6,5 +6,9 @@ require 'pathname'
|
|
6
6
|
bioruby_libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'], 'lib')).cleanpath.to_s
|
7
7
|
$:.unshift(bioruby_libpath) unless $:.include?(bioruby_libpath)
|
8
8
|
|
9
|
-
|
9
|
+
if RUBY_VERSION > "1.8.2"
|
10
|
+
exit Test::Unit::AutoRunner.run(true, File.dirname($0))
|
11
|
+
else
|
12
|
+
exit Test::Unit::AutoRunner.run(false, File.dirname($0))
|
13
|
+
end
|
10
14
|
|
@@ -0,0 +1,115 @@
|
|
1
|
+
#
|
2
|
+
# test/unit/bio/db/test_rebase.rb - Unit test for Bio::REBASE
|
3
|
+
#
|
4
|
+
# Copyright:: Copyright (C) 2005 Trevor Wennblom <trevor@corevx.com>
|
5
|
+
# License:: LGPL
|
6
|
+
#
|
7
|
+
# $Id: test_rebase.rb,v 1.2 2006/01/20 09:53:24 k Exp $
|
8
|
+
#
|
9
|
+
#
|
10
|
+
#--
|
11
|
+
#
|
12
|
+
# This library is free software; you can redistribute it and/or
|
13
|
+
# modify it under the terms of the GNU Lesser General Public
|
14
|
+
# License as published by the Free Software Foundation; either
|
15
|
+
# version 2 of the License, or (at your option) any later version.
|
16
|
+
#
|
17
|
+
# This library is distributed in the hope that it will be useful,
|
18
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
19
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
20
|
+
# Lesser General Public License for more details.
|
21
|
+
#
|
22
|
+
# You should have received a copy of the GNU Lesser General Public
|
23
|
+
# License along with this library; if not, write to the Free Software
|
24
|
+
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
25
|
+
#
|
26
|
+
#++
|
27
|
+
#
|
28
|
+
#
|
29
|
+
|
30
|
+
require 'pathname'
|
31
|
+
libpath = Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 4, 'lib')).cleanpath.to_s
|
32
|
+
$:.unshift(libpath) unless $:.include?(libpath)
|
33
|
+
|
34
|
+
require 'test/unit'
|
35
|
+
require 'bio/db/rebase'
|
36
|
+
|
37
|
+
module Bio
|
38
|
+
class TestREBASE < Test::Unit::TestCase
|
39
|
+
|
40
|
+
def setup
|
41
|
+
enzyme_data = <<END
|
42
|
+
#
|
43
|
+
# REBASE version 511 emboss_e.511
|
44
|
+
#
|
45
|
+
AarI CACCTGC 7 2 0 11 15 0 0
|
46
|
+
AasI GACNNNNNNGTC 12 2 0 7 5 0 0
|
47
|
+
AatI AGGCCT 6 2 1 3 3 0 0
|
48
|
+
END
|
49
|
+
|
50
|
+
reference_data = <<END
|
51
|
+
#
|
52
|
+
# REBASE version 511 emboss_r.511
|
53
|
+
#
|
54
|
+
#
|
55
|
+
AarI
|
56
|
+
Arthrobacter aurescens SS2-322
|
57
|
+
|
58
|
+
|
59
|
+
A. Janulaitis
|
60
|
+
F
|
61
|
+
2
|
62
|
+
Grigaite, R., Maneliene, Z., Janulaitis, A., (2002) Nucleic Acids Res., vol. 30.
|
63
|
+
Maneliene, Z., Zakareviciene, L., Unpublished observations.
|
64
|
+
//
|
65
|
+
AasI
|
66
|
+
Arthrobacter aurescens RFL3
|
67
|
+
|
68
|
+
|
69
|
+
V. Butkus
|
70
|
+
F
|
71
|
+
1
|
72
|
+
Kazlauskiene, R., Vaitkevicius, D., Maneliene, Z., Trinkunaite, L., Kiuduliene, L., Petrusyte, M., Butkus, V., Janulaitis, A., Unpublished observations.
|
73
|
+
//
|
74
|
+
AatI
|
75
|
+
Acetobacter aceti
|
76
|
+
|
77
|
+
|
78
|
+
IFO 3281
|
79
|
+
O
|
80
|
+
2
|
81
|
+
Sato, H., Yamada, Y., (1990) J. Gen. Appl. Microbiol., vol. 36, pp. 273-277.
|
82
|
+
Sugisaki, H., Maekawa, Y., Kanazawa, S., Takanami, M., (1982) Nucleic Acids Res., vol. 10, pp. 5747-5752.
|
83
|
+
//
|
84
|
+
END
|
85
|
+
|
86
|
+
supplier_data = <<END
|
87
|
+
#
|
88
|
+
# REBASE version 511 emboss_s.511
|
89
|
+
#
|
90
|
+
A GE Healthcare
|
91
|
+
B Invitrogen Corporation
|
92
|
+
C Minotech Biotechnology
|
93
|
+
E Stratagene
|
94
|
+
F Fermentas International Inc.
|
95
|
+
G Qbiogene
|
96
|
+
O Toyobo Biochemicals
|
97
|
+
END
|
98
|
+
|
99
|
+
@obj = Bio::REBASE.new(enzyme_data, reference_data, supplier_data)
|
100
|
+
end
|
101
|
+
|
102
|
+
def test_methods
|
103
|
+
a = @obj
|
104
|
+
assert_equal(a['AarI'].organism, 'Arthrobacter aurescens SS2-322')
|
105
|
+
assert_equal(a['AarI'].references.size, 2)
|
106
|
+
assert_equal(a['AarI'].supplier_names, ['Fermentas International Inc.'])
|
107
|
+
assert_equal(a['AarI'].pattern, 'CACCTGC')
|
108
|
+
|
109
|
+
assert_equal(a['AatI'].supplier_names, ['Toyobo Biochemicals'])
|
110
|
+
assert_equal(a['AatI'].suppliers, ['O'])
|
111
|
+
end
|
112
|
+
|
113
|
+
end
|
114
|
+
|
115
|
+
end
|
@@ -17,7 +17,7 @@
|
|
17
17
|
# License along with this library; if not, write to the Free Software
|
18
18
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
19
19
|
#
|
20
|
-
# $Id: test_sirna.rb,v 1.
|
20
|
+
# $Id: test_sirna.rb,v 1.2 2005/12/27 17:27:38 k Exp $
|
21
21
|
#
|
22
22
|
|
23
23
|
require 'pathname'
|
@@ -28,10 +28,12 @@ require 'test/unit'
|
|
28
28
|
require 'bio/util/sirna'
|
29
29
|
|
30
30
|
module Bio
|
31
|
+
|
32
|
+
RANDOM_SEQ = "ctttcggtgcggacgtaaggagtattcctgtactaactaaatggagttaccaaggtaggaccacggtaaaatcgcgagcagcctcgatacaagcgttgtgctgaagcctatcgctgacctgaaggggggcgtaagcaaggcagcggttcaccttcatcagttctgctagaaatcacctagcaccccttatcatccgcgtcaggtccattacccttcccattatgtcggactcaattgaggtgcttgtgaacttatacttgaatccaaaacgtctactgtattggcgactaaaaagcacttgtggggagtcggcttgatcagcctccattagggccaggcactgaggatcatccagttaacgtcagattcaaggtctggctcttagcactcggagttgcac"
|
33
|
+
|
31
34
|
class TestSiRNANew < Test::Unit::TestCase
|
32
35
|
def test_new
|
33
|
-
|
34
|
-
naseq = Bio::Sequence::NA.new("ACGT" * 100).randomize
|
36
|
+
naseq = Bio::Sequence::NA.new(RANDOM_SEQ)
|
35
37
|
assert(Bio::SiRNA.new(naseq))
|
36
38
|
assert(Bio::SiRNA.new(naseq, 21))
|
37
39
|
assert(Bio::SiRNA.new(naseq, 21, 60.0))
|
@@ -43,8 +45,7 @@ module Bio
|
|
43
45
|
|
44
46
|
class TestSiRNA < Test::Unit::TestCase
|
45
47
|
def setup
|
46
|
-
|
47
|
-
naseq = Bio::Sequence::NA.new("ACGT" * 100).randomize
|
48
|
+
naseq = Bio::Sequence::NA.new(RANDOM_SEQ)
|
48
49
|
@obj = Bio::SiRNA.new(naseq)
|
49
50
|
end
|
50
51
|
|
@@ -116,8 +117,7 @@ module Bio
|
|
116
117
|
|
117
118
|
class TestSiRNAPair < Test::Unit::TestCase
|
118
119
|
def setup
|
119
|
-
|
120
|
-
naseq = Bio::Sequence::NA.new("ACGT" * 100).randomize
|
120
|
+
naseq = Bio::Sequence::NA.new(RANDOM_SEQ)
|
121
121
|
@obj = Bio::SiRNA.new(naseq).design.first
|
122
122
|
end
|
123
123
|
|
@@ -175,8 +175,7 @@ END
|
|
175
175
|
|
176
176
|
class TestShRNA < Test::Unit::TestCase
|
177
177
|
def setup
|
178
|
-
|
179
|
-
naseq = Bio::Sequence::NA.new("ACGT" * 100).randomize
|
178
|
+
naseq = Bio::Sequence::NA.new(RANDOM_SEQ)
|
180
179
|
sirna = Bio::SiRNA.new(naseq)
|
181
180
|
pairs = sirna.design
|
182
181
|
@obj = Bio::SiRNA::ShRNA.new(pairs.first)
|
@@ -246,7 +245,8 @@ Top strand shRNA (57 nt):
|
|
246
245
|
Bottom strand shRNA (57 nt):
|
247
246
|
3'-CCUGCAUUCCUCAUAAGGACACACACGACAGGUGUCCUUAUGAGGAAUGCAGGAAAA-5'
|
248
247
|
END
|
249
|
-
|
248
|
+
#@obj.design
|
249
|
+
@obj.block_it
|
250
250
|
assert_equal(report, @obj.report)
|
251
251
|
end
|
252
252
|
|
metadata
CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: bio
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.7.
|
7
|
-
date:
|
6
|
+
version: 0.7.1
|
7
|
+
date: 2006-01-20 00:00:00 +09:00
|
8
8
|
summary: BioRuby is a library for bioinformatics (biology + information science).
|
9
9
|
require_paths:
|
10
|
-
|
10
|
+
- lib
|
11
11
|
email: staff@bioruby.org
|
12
12
|
homepage: http://bioruby.org/
|
13
13
|
rubyforge_project:
|
@@ -18,278 +18,286 @@ bindir: bin
|
|
18
18
|
has_rdoc: false
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
version: 0.0.0
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
25
24
|
version:
|
26
25
|
platform: ruby
|
27
26
|
signing_key:
|
28
27
|
cert_chain:
|
29
28
|
authors:
|
30
|
-
|
29
|
+
- BioRuby project
|
31
30
|
files:
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
31
|
+
- bin/bioruby
|
32
|
+
- bin/br_biofetch.rb
|
33
|
+
- bin/br_bioflat.rb
|
34
|
+
- bin/br_biogetseq.rb
|
35
|
+
- bin/br_pmfetch.rb
|
36
|
+
- doc/BioRuby.rd.ja
|
37
|
+
- doc/Changes-0.7.rd
|
38
|
+
- doc/Design.rd.ja
|
39
|
+
- doc/KEGG_API.rd
|
40
|
+
- doc/KEGG_API.rd.ja
|
41
|
+
- doc/TODO.rd.ja
|
42
|
+
- doc/Tutorial.rd
|
43
|
+
- doc/Tutorial.rd.ja
|
44
|
+
- etc/bioinformatics
|
45
|
+
- etc/bioinformatics/seqdatabase.ini
|
46
|
+
- lib/bio
|
47
|
+
- lib/bio.rb
|
48
|
+
- lib/bioruby.rb
|
49
|
+
- lib/bio/alignment.rb
|
50
|
+
- lib/bio/appl
|
51
|
+
- lib/bio/command.rb
|
52
|
+
- lib/bio/data
|
53
|
+
- lib/bio/db
|
54
|
+
- lib/bio/db.rb
|
55
|
+
- lib/bio/feature.rb
|
56
|
+
- lib/bio/io
|
57
|
+
- lib/bio/location.rb
|
58
|
+
- lib/bio/pathway.rb
|
59
|
+
- lib/bio/reference.rb
|
60
|
+
- lib/bio/sequence.rb
|
61
|
+
- lib/bio/shell
|
62
|
+
- lib/bio/shell.rb
|
63
|
+
- lib/bio/util
|
64
|
+
- lib/bio/appl/bl2seq
|
65
|
+
- lib/bio/appl/blast
|
66
|
+
- lib/bio/appl/blast.rb
|
67
|
+
- lib/bio/appl/blat
|
68
|
+
- lib/bio/appl/clustalw
|
69
|
+
- lib/bio/appl/clustalw.rb
|
70
|
+
- lib/bio/appl/emboss.rb
|
71
|
+
- lib/bio/appl/fasta
|
72
|
+
- lib/bio/appl/fasta.rb
|
73
|
+
- lib/bio/appl/genscan
|
74
|
+
- lib/bio/appl/hmmer
|
75
|
+
- lib/bio/appl/hmmer.rb
|
76
|
+
- lib/bio/appl/mafft
|
77
|
+
- lib/bio/appl/mafft.rb
|
78
|
+
- lib/bio/appl/psort
|
79
|
+
- lib/bio/appl/psort.rb
|
80
|
+
- lib/bio/appl/sim4
|
81
|
+
- lib/bio/appl/sim4.rb
|
82
|
+
- lib/bio/appl/sosui
|
83
|
+
- lib/bio/appl/spidey
|
84
|
+
- lib/bio/appl/targetp
|
85
|
+
- lib/bio/appl/tmhmm
|
86
|
+
- lib/bio/appl/bl2seq/report.rb
|
87
|
+
- lib/bio/appl/blast/format0.rb
|
88
|
+
- lib/bio/appl/blast/format8.rb
|
89
|
+
- lib/bio/appl/blast/report.rb
|
90
|
+
- lib/bio/appl/blast/rexml.rb
|
91
|
+
- lib/bio/appl/blast/wublast.rb
|
92
|
+
- lib/bio/appl/blast/xmlparser.rb
|
93
|
+
- lib/bio/appl/blat/report.rb
|
94
|
+
- lib/bio/appl/clustalw/report.rb
|
95
|
+
- lib/bio/appl/fasta/format10.rb
|
96
|
+
- lib/bio/appl/fasta/format6.rb
|
97
|
+
- lib/bio/appl/genscan/report.rb
|
98
|
+
- lib/bio/appl/hmmer/report.rb
|
99
|
+
- lib/bio/appl/mafft/report.rb
|
100
|
+
- lib/bio/appl/psort/report.rb
|
101
|
+
- lib/bio/appl/sim4/report.rb
|
102
|
+
- lib/bio/appl/sosui/report.rb
|
103
|
+
- lib/bio/appl/spidey/report.rb
|
104
|
+
- lib/bio/appl/targetp/report.rb
|
105
|
+
- lib/bio/appl/tmhmm/report.rb
|
106
|
+
- lib/bio/data/aa.rb
|
107
|
+
- lib/bio/data/codontable.rb
|
108
|
+
- lib/bio/data/na.rb
|
109
|
+
- lib/bio/db/aaindex.rb
|
110
|
+
- lib/bio/db/embl
|
111
|
+
- lib/bio/db/fantom.rb
|
112
|
+
- lib/bio/db/fasta.rb
|
113
|
+
- lib/bio/db/genbank
|
114
|
+
- lib/bio/db/gff.rb
|
115
|
+
- lib/bio/db/go.rb
|
116
|
+
- lib/bio/db/kegg
|
117
|
+
- lib/bio/db/litdb.rb
|
118
|
+
- lib/bio/db/medline.rb
|
119
|
+
- lib/bio/db/nbrf.rb
|
120
|
+
- lib/bio/db/pdb
|
121
|
+
- lib/bio/db/pdb.rb
|
122
|
+
- lib/bio/db/prosite.rb
|
123
|
+
- lib/bio/db/rebase.rb
|
124
|
+
- lib/bio/db/transfac.rb
|
125
|
+
- lib/bio/db/embl/common.rb
|
126
|
+
- lib/bio/db/embl/embl.rb
|
127
|
+
- lib/bio/db/embl/sptr.rb
|
128
|
+
- lib/bio/db/embl/swissprot.rb
|
129
|
+
- lib/bio/db/embl/trembl.rb
|
130
|
+
- lib/bio/db/embl/uniprot.rb
|
131
|
+
- lib/bio/db/genbank/common.rb
|
132
|
+
- lib/bio/db/genbank/ddbj.rb
|
133
|
+
- lib/bio/db/genbank/genbank.rb
|
134
|
+
- lib/bio/db/genbank/genpept.rb
|
135
|
+
- lib/bio/db/genbank/refseq.rb
|
136
|
+
- lib/bio/db/kegg/brite.rb
|
137
|
+
- lib/bio/db/kegg/cell.rb
|
138
|
+
- lib/bio/db/kegg/compound.rb
|
139
|
+
- lib/bio/db/kegg/enzyme.rb
|
140
|
+
- lib/bio/db/kegg/expression.rb
|
141
|
+
- lib/bio/db/kegg/genes.rb
|
142
|
+
- lib/bio/db/kegg/genome.rb
|
143
|
+
- lib/bio/db/kegg/glycan.rb
|
144
|
+
- lib/bio/db/kegg/keggtab.rb
|
145
|
+
- lib/bio/db/kegg/kgml.rb
|
146
|
+
- lib/bio/db/kegg/ko.rb
|
147
|
+
- lib/bio/db/kegg/reaction.rb
|
148
|
+
- lib/bio/db/pdb/atom.rb
|
149
|
+
- lib/bio/db/pdb/chain.rb
|
150
|
+
- lib/bio/db/pdb/model.rb
|
151
|
+
- lib/bio/db/pdb/pdb.rb
|
152
|
+
- lib/bio/db/pdb/residue.rb
|
153
|
+
- lib/bio/db/pdb/utils.rb
|
154
|
+
- lib/bio/io/brdb.rb
|
155
|
+
- lib/bio/io/das.rb
|
156
|
+
- lib/bio/io/dbget.rb
|
157
|
+
- lib/bio/io/ddbjxml.rb
|
158
|
+
- lib/bio/io/fastacmd.rb
|
159
|
+
- lib/bio/io/fetch.rb
|
160
|
+
- lib/bio/io/flatfile
|
161
|
+
- lib/bio/io/flatfile.rb
|
162
|
+
- lib/bio/io/higet.rb
|
163
|
+
- lib/bio/io/keggapi.rb
|
164
|
+
- lib/bio/io/pubmed.rb
|
165
|
+
- lib/bio/io/registry.rb
|
166
|
+
- lib/bio/io/soapwsdl.rb
|
167
|
+
- lib/bio/io/sql.rb
|
168
|
+
- lib/bio/io/flatfile/bdb.rb
|
169
|
+
- lib/bio/io/flatfile/index.rb
|
170
|
+
- lib/bio/io/flatfile/indexer.rb
|
171
|
+
- lib/bio/shell/core.rb
|
172
|
+
- lib/bio/shell/plugin
|
173
|
+
- lib/bio/shell/session.rb
|
174
|
+
- lib/bio/shell/plugin/codon.rb
|
175
|
+
- lib/bio/shell/plugin/entry.rb
|
176
|
+
- lib/bio/shell/plugin/flatfile.rb
|
177
|
+
- lib/bio/shell/plugin/keggapi.rb
|
178
|
+
- lib/bio/shell/plugin/midi.rb
|
179
|
+
- lib/bio/shell/plugin/obda.rb
|
180
|
+
- lib/bio/shell/plugin/seq.rb
|
181
|
+
- lib/bio/util/color_scheme
|
182
|
+
- lib/bio/util/color_scheme.rb
|
183
|
+
- lib/bio/util/contingency_table.rb
|
184
|
+
- lib/bio/util/sirna.rb
|
185
|
+
- lib/bio/util/color_scheme/buried.rb
|
186
|
+
- lib/bio/util/color_scheme/helix.rb
|
187
|
+
- lib/bio/util/color_scheme/hydropathy.rb
|
188
|
+
- lib/bio/util/color_scheme/nucleotide.rb
|
189
|
+
- lib/bio/util/color_scheme/strand.rb
|
190
|
+
- lib/bio/util/color_scheme/taylor.rb
|
191
|
+
- lib/bio/util/color_scheme/turn.rb
|
192
|
+
- lib/bio/util/color_scheme/zappo.rb
|
193
|
+
- sample/biofetch.rb
|
194
|
+
- sample/color_scheme_na.rb
|
195
|
+
- sample/dbget
|
196
|
+
- sample/fasta2tab.rb
|
197
|
+
- sample/fsplit.rb
|
198
|
+
- sample/gb2fasta.rb
|
199
|
+
- sample/gb2tab.rb
|
200
|
+
- sample/gbtab2mysql.rb
|
201
|
+
- sample/genes2nuc.rb
|
202
|
+
- sample/genes2pep.rb
|
203
|
+
- sample/genes2tab.rb
|
204
|
+
- sample/genome2rb.rb
|
205
|
+
- sample/genome2tab.rb
|
206
|
+
- sample/goslim.rb
|
207
|
+
- sample/gt2fasta.rb
|
208
|
+
- sample/pmfetch.rb
|
209
|
+
- sample/pmsearch.rb
|
210
|
+
- sample/psortplot_html.rb
|
211
|
+
- sample/ssearch2tab.rb
|
212
|
+
- sample/tdiary.rb
|
213
|
+
- sample/tfastx2tab.rb
|
214
|
+
- sample/vs-genes.rb
|
215
|
+
- test/data
|
216
|
+
- test/functional
|
217
|
+
- test/runner.rb
|
218
|
+
- test/unit
|
219
|
+
- test/data/blast
|
220
|
+
- test/data/embl
|
221
|
+
- test/data/genscan
|
222
|
+
- test/data/prosite
|
223
|
+
- test/data/refseq
|
224
|
+
- test/data/SOSUI
|
225
|
+
- test/data/TMHMM
|
226
|
+
- test/data/uniprot
|
227
|
+
- test/data/blast/eco:b0002.faa
|
228
|
+
- test/data/blast/eco:b0002.faa.m0
|
229
|
+
- test/data/blast/eco:b0002.faa.m7
|
230
|
+
- test/data/blast/eco:b0002.faa.m8
|
231
|
+
- test/data/embl/AB090716.embl
|
232
|
+
- test/data/genscan/sample.report
|
233
|
+
- test/data/prosite/prosite.dat
|
234
|
+
- test/data/refseq/nm_126355.entret
|
235
|
+
- test/data/SOSUI/sample.report
|
236
|
+
- test/data/TMHMM/sample.report
|
237
|
+
- test/data/uniprot/p53_human.uniprot
|
238
|
+
- test/functional/bio
|
239
|
+
- test/functional/bio/io
|
240
|
+
- test/functional/bio/io/test_soapwsdl.rb
|
241
|
+
- test/unit/bio
|
242
|
+
- test/unit/bio/appl
|
243
|
+
- test/unit/bio/data
|
244
|
+
- test/unit/bio/db
|
245
|
+
- test/unit/bio/io
|
246
|
+
- test/unit/bio/shell
|
247
|
+
- test/unit/bio/test_alignment.rb
|
248
|
+
- test/unit/bio/test_command.rb
|
249
|
+
- test/unit/bio/test_db.rb
|
250
|
+
- test/unit/bio/test_feature.rb
|
251
|
+
- test/unit/bio/test_location.rb
|
252
|
+
- test/unit/bio/test_pathway.rb
|
253
|
+
- test/unit/bio/test_sequence.rb
|
254
|
+
- test/unit/bio/test_shell.rb
|
255
|
+
- test/unit/bio/util
|
256
|
+
- test/unit/bio/appl/blast
|
257
|
+
- test/unit/bio/appl/genscan
|
258
|
+
- test/unit/bio/appl/sosui
|
259
|
+
- test/unit/bio/appl/targetp
|
260
|
+
- test/unit/bio/appl/test_blast.rb
|
261
|
+
- test/unit/bio/appl/test_fasta.rb
|
262
|
+
- test/unit/bio/appl/tmhmm
|
263
|
+
- test/unit/bio/appl/blast/test_report.rb
|
264
|
+
- test/unit/bio/appl/blast/test_xmlparser.rb
|
265
|
+
- test/unit/bio/appl/genscan/test_report.rb
|
266
|
+
- test/unit/bio/appl/sosui/test_report.rb
|
267
|
+
- test/unit/bio/appl/targetp/test_report.rb
|
268
|
+
- test/unit/bio/appl/tmhmm/test_report.rb
|
269
|
+
- test/unit/bio/data/test_aa.rb
|
270
|
+
- test/unit/bio/data/test_codontable.rb
|
271
|
+
- test/unit/bio/data/test_na.rb
|
272
|
+
- test/unit/bio/db/embl
|
273
|
+
- test/unit/bio/db/kegg
|
274
|
+
- test/unit/bio/db/test_fasta.rb
|
275
|
+
- test/unit/bio/db/test_gff.rb
|
276
|
+
- test/unit/bio/db/test_prosite.rb
|
277
|
+
- test/unit/bio/db/test_rebase.rb
|
278
|
+
- test/unit/bio/db/embl/test_common.rb
|
279
|
+
- test/unit/bio/db/embl/test_embl.rb
|
280
|
+
- test/unit/bio/db/embl/test_sptr.rb
|
281
|
+
- test/unit/bio/db/embl/test_uniprot.rb
|
282
|
+
- test/unit/bio/db/kegg/test_genes.rb
|
283
|
+
- test/unit/bio/io/test_ddbjxml.rb
|
284
|
+
- test/unit/bio/io/test_soapwsdl.rb
|
285
|
+
- test/unit/bio/shell/plugin
|
286
|
+
- test/unit/bio/shell/plugin/test_seq.rb
|
287
|
+
- test/unit/bio/util/test_color_scheme.rb
|
288
|
+
- test/unit/bio/util/test_contingency_table.rb
|
289
|
+
- test/unit/bio/util/test_sirna.rb
|
289
290
|
test_files: []
|
291
|
+
|
290
292
|
rdoc_options: []
|
293
|
+
|
291
294
|
extra_rdoc_files: []
|
295
|
+
|
292
296
|
executables: []
|
297
|
+
|
293
298
|
extensions: []
|
299
|
+
|
294
300
|
requirements: []
|
295
|
-
|
301
|
+
|
302
|
+
dependencies: []
|
303
|
+
|