bio 0.7.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.
Files changed (201) hide show
  1. data/bin/bioruby +107 -0
  2. data/bin/br_biofetch.rb +59 -0
  3. data/bin/br_bioflat.rb +294 -0
  4. data/bin/br_biogetseq.rb +57 -0
  5. data/bin/br_pmfetch.rb +431 -0
  6. data/doc/BioRuby.rd.ja +225 -0
  7. data/doc/Changes-0.7.rd +236 -0
  8. data/doc/Design.rd.ja +341 -0
  9. data/doc/KEGG_API.rd +1437 -0
  10. data/doc/KEGG_API.rd.ja +1399 -0
  11. data/doc/TODO.rd.ja +138 -0
  12. data/doc/Tutorial.rd +1138 -0
  13. data/doc/Tutorial.rd.ja +2110 -0
  14. data/etc/bioinformatics/seqdatabase.ini +210 -0
  15. data/lib/bio.rb +256 -0
  16. data/lib/bio/alignment.rb +1906 -0
  17. data/lib/bio/appl/bl2seq/report.rb +350 -0
  18. data/lib/bio/appl/blast.rb +269 -0
  19. data/lib/bio/appl/blast/format0.rb +1402 -0
  20. data/lib/bio/appl/blast/format8.rb +95 -0
  21. data/lib/bio/appl/blast/report.rb +652 -0
  22. data/lib/bio/appl/blast/rexml.rb +151 -0
  23. data/lib/bio/appl/blast/wublast.rb +553 -0
  24. data/lib/bio/appl/blast/xmlparser.rb +222 -0
  25. data/lib/bio/appl/blat/report.rb +392 -0
  26. data/lib/bio/appl/clustalw.rb +191 -0
  27. data/lib/bio/appl/clustalw/report.rb +154 -0
  28. data/lib/bio/appl/emboss.rb +68 -0
  29. data/lib/bio/appl/fasta.rb +262 -0
  30. data/lib/bio/appl/fasta/format10.rb +428 -0
  31. data/lib/bio/appl/fasta/format6.rb +37 -0
  32. data/lib/bio/appl/genscan/report.rb +570 -0
  33. data/lib/bio/appl/hmmer.rb +129 -0
  34. data/lib/bio/appl/hmmer/report.rb +556 -0
  35. data/lib/bio/appl/mafft.rb +222 -0
  36. data/lib/bio/appl/mafft/report.rb +119 -0
  37. data/lib/bio/appl/psort.rb +555 -0
  38. data/lib/bio/appl/psort/report.rb +473 -0
  39. data/lib/bio/appl/sim4.rb +134 -0
  40. data/lib/bio/appl/sim4/report.rb +501 -0
  41. data/lib/bio/appl/sosui/report.rb +166 -0
  42. data/lib/bio/appl/spidey/report.rb +604 -0
  43. data/lib/bio/appl/targetp/report.rb +283 -0
  44. data/lib/bio/appl/tmhmm/report.rb +238 -0
  45. data/lib/bio/command.rb +166 -0
  46. data/lib/bio/data/aa.rb +354 -0
  47. data/lib/bio/data/codontable.rb +740 -0
  48. data/lib/bio/data/na.rb +226 -0
  49. data/lib/bio/db.rb +340 -0
  50. data/lib/bio/db/aaindex.rb +280 -0
  51. data/lib/bio/db/embl/common.rb +332 -0
  52. data/lib/bio/db/embl/embl.rb +446 -0
  53. data/lib/bio/db/embl/sptr.rb +954 -0
  54. data/lib/bio/db/embl/swissprot.rb +32 -0
  55. data/lib/bio/db/embl/trembl.rb +31 -0
  56. data/lib/bio/db/embl/uniprot.rb +32 -0
  57. data/lib/bio/db/fantom.rb +604 -0
  58. data/lib/bio/db/fasta.rb +869 -0
  59. data/lib/bio/db/genbank/common.rb +299 -0
  60. data/lib/bio/db/genbank/ddbj.rb +34 -0
  61. data/lib/bio/db/genbank/genbank.rb +354 -0
  62. data/lib/bio/db/genbank/genpept.rb +73 -0
  63. data/lib/bio/db/genbank/refseq.rb +31 -0
  64. data/lib/bio/db/gff.rb +106 -0
  65. data/lib/bio/db/go.rb +497 -0
  66. data/lib/bio/db/kegg/brite.rb +51 -0
  67. data/lib/bio/db/kegg/cell.rb +88 -0
  68. data/lib/bio/db/kegg/compound.rb +130 -0
  69. data/lib/bio/db/kegg/enzyme.rb +125 -0
  70. data/lib/bio/db/kegg/expression.rb +173 -0
  71. data/lib/bio/db/kegg/genes.rb +293 -0
  72. data/lib/bio/db/kegg/genome.rb +362 -0
  73. data/lib/bio/db/kegg/glycan.rb +213 -0
  74. data/lib/bio/db/kegg/keggtab.rb +418 -0
  75. data/lib/bio/db/kegg/kgml.rb +299 -0
  76. data/lib/bio/db/kegg/ko.rb +178 -0
  77. data/lib/bio/db/kegg/reaction.rb +97 -0
  78. data/lib/bio/db/litdb.rb +131 -0
  79. data/lib/bio/db/medline.rb +317 -0
  80. data/lib/bio/db/nbrf.rb +199 -0
  81. data/lib/bio/db/pdb.rb +38 -0
  82. data/lib/bio/db/pdb/atom.rb +60 -0
  83. data/lib/bio/db/pdb/chain.rb +117 -0
  84. data/lib/bio/db/pdb/model.rb +106 -0
  85. data/lib/bio/db/pdb/pdb.rb +1682 -0
  86. data/lib/bio/db/pdb/residue.rb +122 -0
  87. data/lib/bio/db/pdb/utils.rb +234 -0
  88. data/lib/bio/db/prosite.rb +616 -0
  89. data/lib/bio/db/rebase.rb +417 -0
  90. data/lib/bio/db/transfac.rb +387 -0
  91. data/lib/bio/feature.rb +201 -0
  92. data/lib/bio/io/brdb.rb +103 -0
  93. data/lib/bio/io/das.rb +471 -0
  94. data/lib/bio/io/dbget.rb +212 -0
  95. data/lib/bio/io/ddbjxml.rb +614 -0
  96. data/lib/bio/io/fastacmd.rb +123 -0
  97. data/lib/bio/io/fetch.rb +114 -0
  98. data/lib/bio/io/flatfile.rb +496 -0
  99. data/lib/bio/io/flatfile/bdb.rb +266 -0
  100. data/lib/bio/io/flatfile/index.rb +1308 -0
  101. data/lib/bio/io/flatfile/indexer.rb +778 -0
  102. data/lib/bio/io/higet.rb +92 -0
  103. data/lib/bio/io/keggapi.rb +863 -0
  104. data/lib/bio/io/pubmed.rb +189 -0
  105. data/lib/bio/io/registry.rb +308 -0
  106. data/lib/bio/io/soapwsdl.rb +114 -0
  107. data/lib/bio/io/sql.rb +428 -0
  108. data/lib/bio/location.rb +650 -0
  109. data/lib/bio/pathway.rb +991 -0
  110. data/lib/bio/reference.rb +308 -0
  111. data/lib/bio/sequence.rb +593 -0
  112. data/lib/bio/shell.rb +51 -0
  113. data/lib/bio/shell/core.rb +512 -0
  114. data/lib/bio/shell/plugin/codon.rb +228 -0
  115. data/lib/bio/shell/plugin/entry.rb +85 -0
  116. data/lib/bio/shell/plugin/flatfile.rb +119 -0
  117. data/lib/bio/shell/plugin/keggapi.rb +187 -0
  118. data/lib/bio/shell/plugin/midi.rb +448 -0
  119. data/lib/bio/shell/plugin/obda.rb +63 -0
  120. data/lib/bio/shell/plugin/seq.rb +238 -0
  121. data/lib/bio/shell/session.rb +214 -0
  122. data/lib/bio/util/color_scheme.rb +214 -0
  123. data/lib/bio/util/color_scheme/buried.rb +78 -0
  124. data/lib/bio/util/color_scheme/helix.rb +78 -0
  125. data/lib/bio/util/color_scheme/hydropathy.rb +83 -0
  126. data/lib/bio/util/color_scheme/nucleotide.rb +50 -0
  127. data/lib/bio/util/color_scheme/strand.rb +78 -0
  128. data/lib/bio/util/color_scheme/taylor.rb +69 -0
  129. data/lib/bio/util/color_scheme/turn.rb +78 -0
  130. data/lib/bio/util/color_scheme/zappo.rb +69 -0
  131. data/lib/bio/util/contingency_table.rb +337 -0
  132. data/lib/bio/util/sirna.rb +306 -0
  133. data/lib/bioruby.rb +34 -0
  134. data/sample/biofetch.rb +475 -0
  135. data/sample/color_scheme_na.rb +99 -0
  136. data/sample/dbget +37 -0
  137. data/sample/fasta2tab.rb +99 -0
  138. data/sample/fsplit.rb +51 -0
  139. data/sample/gb2fasta.rb +31 -0
  140. data/sample/gb2tab.rb +325 -0
  141. data/sample/gbtab2mysql.rb +161 -0
  142. data/sample/genes2nuc.rb +33 -0
  143. data/sample/genes2pep.rb +33 -0
  144. data/sample/genes2tab.rb +81 -0
  145. data/sample/genome2rb.rb +29 -0
  146. data/sample/genome2tab.rb +76 -0
  147. data/sample/goslim.rb +311 -0
  148. data/sample/gt2fasta.rb +47 -0
  149. data/sample/pmfetch.rb +42 -0
  150. data/sample/pmsearch.rb +42 -0
  151. data/sample/psortplot_html.rb +222 -0
  152. data/sample/ssearch2tab.rb +96 -0
  153. data/sample/tdiary.rb +158 -0
  154. data/sample/tfastx2tab.rb +100 -0
  155. data/sample/vs-genes.rb +212 -0
  156. data/test/data/SOSUI/sample.report +11 -0
  157. data/test/data/TMHMM/sample.report +21 -0
  158. data/test/data/blast/eco:b0002.faa +15 -0
  159. data/test/data/blast/eco:b0002.faa.m0 +128 -0
  160. data/test/data/blast/eco:b0002.faa.m7 +65 -0
  161. data/test/data/blast/eco:b0002.faa.m8 +1 -0
  162. data/test/data/embl/AB090716.embl +65 -0
  163. data/test/data/genscan/sample.report +63 -0
  164. data/test/data/prosite/prosite.dat +2233 -0
  165. data/test/data/refseq/nm_126355.entret +64 -0
  166. data/test/data/uniprot/p53_human.uniprot +1456 -0
  167. data/test/runner.rb +10 -0
  168. data/test/unit/bio/appl/blast/test_report.rb +427 -0
  169. data/test/unit/bio/appl/blast/test_xmlparser.rb +400 -0
  170. data/test/unit/bio/appl/genscan/test_report.rb +195 -0
  171. data/test/unit/bio/appl/sosui/test_report.rb +94 -0
  172. data/test/unit/bio/appl/targetp/test_report.rb +159 -0
  173. data/test/unit/bio/appl/test_blast.rb +159 -0
  174. data/test/unit/bio/appl/test_fasta.rb +142 -0
  175. data/test/unit/bio/appl/tmhmm/test_report.rb +139 -0
  176. data/test/unit/bio/data/test_aa.rb +103 -0
  177. data/test/unit/bio/data/test_codontable.rb +120 -0
  178. data/test/unit/bio/data/test_na.rb +89 -0
  179. data/test/unit/bio/db/embl/test_common.rb +130 -0
  180. data/test/unit/bio/db/embl/test_embl.rb +227 -0
  181. data/test/unit/bio/db/embl/test_sptr.rb +268 -0
  182. data/test/unit/bio/db/embl/test_uniprot.rb +44 -0
  183. data/test/unit/bio/db/kegg/test_genes.rb +58 -0
  184. data/test/unit/bio/db/test_fasta.rb +263 -0
  185. data/test/unit/bio/db/test_gff.rb +140 -0
  186. data/test/unit/bio/db/test_prosite.rb +1450 -0
  187. data/test/unit/bio/io/test_ddbjxml.rb +87 -0
  188. data/test/unit/bio/io/test_soapwsdl.rb +45 -0
  189. data/test/unit/bio/shell/plugin/test_seq.rb +175 -0
  190. data/test/unit/bio/test_alignment.rb +1028 -0
  191. data/test/unit/bio/test_command.rb +71 -0
  192. data/test/unit/bio/test_db.rb +109 -0
  193. data/test/unit/bio/test_feature.rb +128 -0
  194. data/test/unit/bio/test_location.rb +51 -0
  195. data/test/unit/bio/test_pathway.rb +485 -0
  196. data/test/unit/bio/test_sequence.rb +386 -0
  197. data/test/unit/bio/test_shell.rb +31 -0
  198. data/test/unit/bio/util/test_color_scheme.rb +45 -0
  199. data/test/unit/bio/util/test_contingency_table.rb +106 -0
  200. data/test/unit/bio/util/test_sirna.rb +258 -0
  201. metadata +295 -0
@@ -0,0 +1,210 @@
1
+ VERSION=1.00
2
+
3
+ [embl]
4
+ protocol=biofetch
5
+ location=http://bioruby.org/cgi-bin/biofetch.rb
6
+ dbname=embl
7
+
8
+ [embl-upd]
9
+ protocol=biofetch
10
+ location=http://bioruby.org/cgi-bin/biofetch.rb
11
+ dbname=embl-upd
12
+
13
+ [embl_biofetch]
14
+ protocol=biofetch
15
+ location=http://www.ebi.ac.uk/cgi-bin/dbfetch
16
+ dbname=embl
17
+
18
+ [embl_biosql]
19
+ protocol=biosql
20
+ location=localhost
21
+ dbname=biosql
22
+ driver=postgres
23
+ user=hack
24
+ pass=
25
+ biodbname=embl
26
+
27
+ [embl_biocorba]
28
+ protocol=bsane-corba
29
+ location=sqldbsrv.ior
30
+
31
+ [embl_xembl]
32
+ protocol=xembl
33
+ location=http://www.ebi.ac.uk/xembl/XEMBL.wsdl
34
+ format=Bsml
35
+
36
+ [embl_flat]
37
+ protcol=flat
38
+ location=/export/database/
39
+ dbname=embl
40
+
41
+ [genbank_bdb]
42
+ protcol=flat
43
+ location=/export/database/
44
+ dbname=genbank
45
+
46
+ [swissprot]
47
+ protocol=biofetch
48
+ location=http://bioruby.org/cgi-bin/biofetch.rb
49
+ dbname=swissprot
50
+
51
+ [swissprot-upd]
52
+ protocol=biofetch
53
+ location=http://bioruby.org/cgi-bin/biofetch.rb
54
+ dbname=swissprot-upd
55
+
56
+ [swissprot_biofetch]
57
+ protocol=biofetch
58
+ location=http://www.ebi.ac.uk/cgi-bin/dbfetch
59
+ dbname=swall
60
+
61
+ [swissprot_biosql]
62
+ protocol=biosql
63
+ location=db.bioruby.org
64
+ dbname=biosql
65
+ driver=mysql
66
+ user=root
67
+ pass=
68
+ biodbname=sp
69
+
70
+
71
+ [genbank]
72
+ protocol=biofetch
73
+ location=http://bioruby.org/cgi-bin/biofetch.rb
74
+ dbname=genbank
75
+
76
+ [genbank-upd]
77
+ protocol=biofetch
78
+ location=http://bioruby.org/cgi-bin/biofetch.rb
79
+ dbname=genbank-upd
80
+
81
+ [genbank_biosql]
82
+ protocol=biosql
83
+ location=db.bioruby.org
84
+ dbname=biosql
85
+ driver=mysql
86
+ user=root
87
+ pass=
88
+ biodbname=gb
89
+
90
+
91
+ [refseq]
92
+ protocol=biofetch
93
+ location=http://bioruby.org/cgi-bin/biofetch.rb
94
+ dbname=refseq
95
+
96
+ [refseq_biosql]
97
+ protocol=biosql
98
+ location=db.bioruby.org
99
+ dbname=biosql
100
+ driver=mysql
101
+ user=
102
+ pass=
103
+ biodbname=rs
104
+
105
+
106
+ [kegg-pathway]
107
+ protocol=biofetch
108
+ location=http://bioruby.org/cgi-bin/biofetch.rb
109
+ dbname=pathway
110
+
111
+ [kegg-genome]
112
+ protocol=biofetch
113
+ location=http://bioruby.org/cgi-bin/biofetch.rb
114
+ dbname=genome
115
+
116
+ [kegg-genes]
117
+ protocol=biofetch
118
+ location=http://bioruby.org/cgi-bin/biofetch.rb
119
+ dbname=genes
120
+
121
+ [kegg-vgenes]
122
+ protocol=biofetch
123
+ location=http://bioruby.org/cgi-bin/biofetch.rb
124
+ dbname=vgenes
125
+
126
+ [aaindex]
127
+ protocol=biofetch
128
+ location=http://bioruby.org/cgi-bin/biofetch.rb
129
+ dbname=aaindex
130
+
131
+ [blocks]
132
+ protocol=biofetch
133
+ location=http://bioruby.org/cgi-bin/biofetch.rb
134
+ dbname=blocks
135
+
136
+ [enzyme]
137
+ protocol=biofetch
138
+ location=http://bioruby.org/cgi-bin/biofetch.rb
139
+ dbname=enzyme
140
+
141
+ [epd]
142
+ protocol=biofetch
143
+ location=http://bioruby.org/cgi-bin/biofetch.rb
144
+ dbname=epd
145
+
146
+ [litdb]
147
+ protocol=biofetch
148
+ location=http://bioruby.org/cgi-bin/biofetch.rb
149
+ dbname=litdb
150
+
151
+ [omim]
152
+ protocol=biofetch
153
+ location=http://bioruby.org/cgi-bin/biofetch.rb
154
+ dbname=omim
155
+
156
+ [pdb]
157
+ protocol=biofetch
158
+ location=http://bioruby.org/cgi-bin/biofetch.rb
159
+ dbname=pdb
160
+
161
+ [pdbstr]
162
+ protocol=biofetch
163
+ location=http://bioruby.org/cgi-bin/biofetch.rb
164
+ dbname=pdbstr
165
+
166
+ [pfam]
167
+ protocol=biofetch
168
+ location=http://bioruby.org/cgi-bin/biofetch.rb
169
+ dbname=pfam
170
+
171
+ [pir]
172
+ protocol=biofetch
173
+ location=http://bioruby.org/cgi-bin/biofetch.rb
174
+ dbname=pir
175
+
176
+ [pmd]
177
+ protocol=biofetch
178
+ location=http://bioruby.org/cgi-bin/biofetch.rb
179
+ dbname=pmd
180
+
181
+ [prf]
182
+ protocol=biofetch
183
+ location=http://bioruby.org/cgi-bin/biofetch.rb
184
+ dbname=prf
185
+
186
+ [prints]
187
+ protocol=biofetch
188
+ location=http://bioruby.org/cgi-bin/biofetch.rb
189
+ dbname=prints
190
+
191
+ [prodom]
192
+ protocol=biofetch
193
+ location=http://bioruby.org/cgi-bin/biofetch.rb
194
+ dbname=prodom
195
+
196
+ [prosdoc]
197
+ protocol=biofetch
198
+ location=http://bioruby.org/cgi-bin/biofetch.rb
199
+ dbname=prosdoc
200
+
201
+ [prosite]
202
+ protocol=biofetch
203
+ location=http://bioruby.org/cgi-bin/biofetch.rb
204
+ dbname=prosite
205
+
206
+ [transfac]
207
+ protocol=biofetch
208
+ location=http://bioruby.org/cgi-bin/biofetch.rb
209
+ dbname=transfac
210
+
data/lib/bio.rb ADDED
@@ -0,0 +1,256 @@
1
+ #
2
+ # = bio.rb - Loading all BioRuby modules
3
+ #
4
+ # Copyright:: Copyright (C) 2001-2005
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: LGPL
7
+ #
8
+ # $Id: bio.rb,v 1.58 2005/11/28 04:57:32 k Exp $
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
+ module Bio
30
+
31
+ BIORUBY_VERSION = [0, 7, 0].extend(Comparable)
32
+
33
+ ### Basic data types
34
+
35
+ ## Sequence
36
+
37
+ autoload :Seq, 'bio/sequence'
38
+ autoload :Sequence, 'bio/sequence'
39
+
40
+ ## Locations/Location
41
+
42
+ autoload :Location, 'bio/location'
43
+ autoload :Locations, 'bio/location'
44
+
45
+ ## Features/Feature
46
+
47
+ autoload :Feature, 'bio/feature'
48
+ autoload :Features, 'bio/feature'
49
+
50
+ ## References/Reference
51
+
52
+ autoload :Reference, 'bio/reference'
53
+ autoload :References, 'bio/reference'
54
+
55
+ ## Pathway/Relation
56
+
57
+ autoload :Pathway, 'bio/pathway'
58
+ autoload :Relation, 'bio/pathway'
59
+
60
+ ## Alignment
61
+
62
+ autoload :Alignment, 'bio/alignment'
63
+
64
+
65
+ ### Constants
66
+
67
+ autoload :NucleicAcid, 'bio/data/na'
68
+ autoload :AminoAcid, 'bio/data/aa'
69
+ autoload :CodonTable, 'bio/data/codontable'
70
+
71
+
72
+ ### DB parsers
73
+
74
+ autoload :DB, 'bio/db'
75
+ autoload :NCBIDB, 'bio/db'
76
+ autoload :KEGGDB, 'bio/db'
77
+ autoload :EMBLDB, 'bio/db'
78
+
79
+ ## GenBank/RefSeq/DDBJ
80
+
81
+ # module Bio
82
+ # autoload :NCBIDB, 'bio/db'
83
+ # class GenBank < NCBIDB
84
+ # autoload :Common, 'bio/db/genbank/common'
85
+ # include Bio::GenBank::Common
86
+
87
+ # module Bio
88
+ # autoload :NCBIDB, 'bio/db'
89
+ # end
90
+ # class Bio::GenBank < Bio::NCBIDB
91
+ # autoload :Common, 'bio/db/genbank/common'
92
+ # include Bio::GenBank::Common
93
+
94
+ autoload :GenBank, 'bio/db/genbank/genbank'
95
+ autoload :GenPept, 'bio/db/genbank/genpept'
96
+ autoload :RefSeq, 'bio/db/genbank/refseq'
97
+ autoload :DDBJ, 'bio/db/genbank/ddbj'
98
+ ## below are described in bio/db/genbank/ddbj.rb
99
+ #class DDBJ
100
+ # autoload :XML, 'bio/io/ddbjxml'
101
+ #end
102
+
103
+ ## EMBL/TrEMBL/Swiss-Prot/SPTR
104
+
105
+ autoload :EMBL, 'bio/db/embl/embl'
106
+ autoload :SPTR, 'bio/db/embl/sptr'
107
+ autoload :TrEMBL, 'bio/db/embl/trembl'
108
+ autoload :UniProt, 'bio/db/embl/uniprot'
109
+ autoload :SwissProt, 'bio/db/embl/swissprot'
110
+
111
+
112
+ ## KEGG
113
+
114
+ class KEGG
115
+ autoload :GENOME, 'bio/db/kegg/genome'
116
+ autoload :GENES, 'bio/db/kegg/genes'
117
+ autoload :ENZYME, 'bio/db/kegg/enzyme'
118
+ autoload :COMPOUND, 'bio/db/kegg/compound'
119
+ autoload :GLYCAN, 'bio/db/kegg/glycan'
120
+ autoload :REACTION, 'bio/db/kegg/reaction'
121
+ autoload :BRITE, 'bio/db/kegg/brite'
122
+ autoload :CELL, 'bio/db/kegg/cell'
123
+ autoload :EXPRESSION, 'bio/db/kegg/expression'
124
+ autoload :Keggtab, 'bio/db/kegg/keggtab'
125
+ autoload :KO, 'bio/db/kegg/ko'
126
+ autoload :KGML, 'bio/db/kegg/kgml'
127
+ end
128
+
129
+ ## other formats
130
+
131
+ autoload :FastaFormat, 'bio/db/fasta'
132
+ autoload :FastaNumericFormat, 'bio/db/fasta' # change to FastaFormat::Numeric ?
133
+ autoload :FastaDefline, 'bio/db/fasta' # change to FastaFormat::Defline
134
+ autoload :GFF, 'bio/db/gff'
135
+ autoload :AAindex, 'bio/db/aaindex'
136
+ autoload :TRANSFAC, 'bio/db/transfac'
137
+ autoload :PROSITE, 'bio/db/prosite'
138
+ autoload :LITDB, 'bio/db/litdb'
139
+ autoload :MEDLINE, 'bio/db/medline'
140
+ autoload :FANTOM, 'bio/db/fantom'
141
+ autoload :GO, 'bio/db/go'
142
+ autoload :PDB, 'bio/db/pdb'
143
+ autoload :NBRF, 'bio/db/nbrf'
144
+
145
+
146
+ ### IO interface modules
147
+
148
+ autoload :Registry, 'bio/io/registry'
149
+ autoload :Fetch, 'bio/io/fetch'
150
+ autoload :SQL, 'bio/io/sql'
151
+ autoload :FlatFile, 'bio/io/flatfile'
152
+ autoload :FlatFileIndex, 'bio/io/flatfile/index' # chage to FlatFile::Index ?
153
+ ## below are described in bio/io/flatfile/index.rb
154
+ #class FlatFileIndex
155
+ # autoload :Indexer, 'bio/io/flatfile/indexer'
156
+ # autoload :BDBdefault, 'bio/io/flatfile/bdb'
157
+ # autoload :BDBwrapper, 'bio/io/flatfile/bdb'
158
+ # autoload :BDB_1, 'bio/io/flatfile/bdb'
159
+ #end
160
+
161
+ autoload :PubMed, 'bio/io/pubmed'
162
+ autoload :DAS, 'bio/io/das'
163
+ autoload :DBGET, 'bio/io/dbget'
164
+
165
+ ## below are described in bio/appl/blast.rb
166
+ #class Blast
167
+ # autoload :Fastacmd, 'bio/io/fastacmd'
168
+ #end
169
+
170
+ class KEGG
171
+ autoload :API, 'bio/io/keggapi'
172
+ end
173
+
174
+ ## below are described in bio/db/genbank/ddbj.rb
175
+ #class DDBJ
176
+ # autoload :XML, 'bio/io/ddbjxml'
177
+ #end
178
+
179
+ class HGC
180
+ autoload :HiGet, 'bio/io/higet'
181
+ end
182
+
183
+ # autoload :ESOAP, 'bio/io/esoap' # NCBI::ESOAP ?
184
+ # autoload :BRDB, 'bio/io/brdb' # remove
185
+
186
+
187
+ ### Applications
188
+
189
+ autoload :Fasta, 'bio/appl/fasta'
190
+ ## below are described in bio/appl/fasta.rb
191
+ #class Fasta
192
+ # autoload :Report, 'bio/appl/fasta/format10'
193
+ #end
194
+
195
+ autoload :Blast, 'bio/appl/blast'
196
+ ## below are described in bio/appl/blast.rb
197
+ #class Blast
198
+ # autoload :Fastacmd, 'bio/io/fastacmd'
199
+ # autoload :Report, 'bio/appl/blast/report'
200
+ # autoload :Default, 'bio/appl/blast/format0'
201
+ # autoload :WU, 'bio/appl/blast/wublast'
202
+ # autoload :Bl2seq, 'bio/appl/bl2seq/report'
203
+ #end
204
+
205
+ autoload :HMMER, 'bio/appl/hmmer'
206
+ ## below are described in bio/appl/hmmer.rb
207
+ #class HMMER
208
+ # autoload :Report, 'bio/appl/hmmer/report'
209
+ #end
210
+
211
+ # autoload :EMBOSS, 'bio/appl/emboss' # use bio/command, improve
212
+
213
+ autoload :PSORT, 'bio/appl/psort'
214
+ ## below are described in bio/appl/psort.rb
215
+ #class PSORT
216
+ # class PSORT1
217
+ # autoload :Report, 'bio/appl/psort/report'
218
+ # end
219
+ # class PSORT2
220
+ # autoload :Report, 'bio/appl/psort/report'
221
+ # end
222
+ #end
223
+
224
+ autoload :TMHMM, 'bio/appl/tmhmm/report'
225
+ autoload :TargetP, 'bio/appl/targetp/report'
226
+ autoload :SOSUI, 'bio/appl/sosui/report'
227
+ autoload :Genscan, 'bio/appl/genscan/report'
228
+
229
+ autoload :ClustalW, 'bio/appl/clustalw'
230
+ ## below are described in bio/appl/clustalw.rb
231
+ #class ClustalW
232
+ # autoload :Report, 'bio/appl/clustalw/report'
233
+ #end
234
+
235
+ autoload :MAFFT, 'bio/appl/mafft'
236
+ ## below are described in bio/appl/mafft.rb
237
+ #class MAFFT
238
+ # autoload :Report, 'bio/appl/mafft/report'
239
+ #end
240
+
241
+ autoload :Sim4, 'bio/appl/sim4'
242
+ ## below are described in bio/appl/sim4.rb
243
+ #class Sim4
244
+ # autoload :Report, 'bio/appl/sim4/report'
245
+ #end
246
+
247
+ autoload :Spidey, 'bio/appl/spidey/report'
248
+ autoload :Blat, 'bio/appl/blat/report'
249
+
250
+
251
+ ### Utilities
252
+
253
+ autoload :SiRNA, 'bio/util/sirna'
254
+ autoload :ColorScheme, 'bio/util/color_scheme'
255
+
256
+ end