1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 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
|
#
# = bio.rb - Loading all BioRuby modules
#
# Copyright:: Copyright (C) 2001-2007
# Toshiaki Katayama <k@bioruby.org>
# License:: The Ruby License
#
# $Id:$
#
module Bio
autoload :BIORUBY_VERSION, 'bio/version'
autoload :BIORUBY_EXTRA_VERSION, 'bio/version'
autoload :BIORUBY_VERSION_ID, 'bio/version'
### Basic data types
## Sequence
autoload :Sequence, 'bio/sequence'
## below are described in bio/sequence.rb
#class Sequence
# autoload :Common, 'bio/sequence/common'
# autoload :NA, 'bio/sequence/na'
# autoload :AA, 'bio/sequence/aa'
# autoload :Generic, 'bio/sequence/generic'
# autoload :Format, 'bio/sequence/format'
# autoload :Adapter, 'bio/sequence/adapter'
#end
## Locations/Location
autoload :Location, 'bio/location'
autoload :Locations, 'bio/location'
## Features/Feature
autoload :Feature, 'bio/feature'
autoload :Features, 'bio/compat/features'
## References/Reference
autoload :Reference, 'bio/reference'
autoload :References, 'bio/compat/references'
## Pathway/Relation
autoload :Pathway, 'bio/pathway'
autoload :Relation, 'bio/pathway'
## Alignment
autoload :Alignment, 'bio/alignment'
## Tree
autoload :Tree, 'bio/tree'
## Map
autoload :Map, 'bio/map'
### Constants
autoload :NucleicAcid, 'bio/data/na'
autoload :AminoAcid, 'bio/data/aa'
autoload :CodonTable, 'bio/data/codontable'
### DB parsers
autoload :DB, 'bio/db'
autoload :NCBIDB, 'bio/db'
autoload :KEGGDB, 'bio/db'
autoload :EMBLDB, 'bio/db'
## GenBank, GenPept
autoload :GenBank, 'bio/db/genbank/genbank'
autoload :GenPept, 'bio/db/genbank/genpept'
## (deprecated) Bio::RefSeq, Bio::DDBJ
autoload :RefSeq, 'bio/db/genbank/refseq'
autoload :DDBJ, 'bio/db/genbank/ddbj'
## EMBL, UniProtKB
autoload :EMBL, 'bio/db/embl/embl'
autoload :UniProtKB, 'bio/db/embl/uniprotkb'
## aliases of Bio::UniProtKB
autoload :SPTR, 'bio/db/embl/sptr'
autoload :UniProt, 'bio/db/embl/uniprot'
## (deprecated) Bio::TrEMBL, Bio::SwissProt
autoload :TrEMBL, 'bio/db/embl/trembl'
autoload :SwissProt, 'bio/db/embl/swissprot'
## KEGG
class KEGG
autoload :GENOME, 'bio/db/kegg/genome'
autoload :GENES, 'bio/db/kegg/genes'
autoload :ENZYME, 'bio/db/kegg/enzyme'
autoload :COMPOUND, 'bio/db/kegg/compound'
autoload :DRUG, 'bio/db/kegg/drug'
autoload :GLYCAN, 'bio/db/kegg/glycan'
autoload :REACTION, 'bio/db/kegg/reaction'
autoload :BRITE, 'bio/db/kegg/brite'
autoload :CELL, 'bio/db/kegg/cell'
autoload :EXPRESSION, 'bio/db/kegg/expression'
autoload :ORTHOLOGY, 'bio/db/kegg/orthology'
autoload :KGML, 'bio/db/kegg/kgml'
autoload :PATHWAY, 'bio/db/kegg/pathway'
autoload :MODULE, 'bio/db/kegg/module'
end
## other formats
autoload :FastaFormat, 'bio/db/fasta'
autoload :FastaNumericFormat, 'bio/db/fasta/qual' # change to FastaFormat::Numeric ?
autoload :FastaDefline, 'bio/db/fasta/defline' # change to FastaFormat::Defline ?
autoload :Fastq, 'bio/db/fastq'
autoload :GFF, 'bio/db/gff'
autoload :AAindex, 'bio/db/aaindex'
autoload :AAindex1, 'bio/db/aaindex' # change to AAindex::AAindex1 ?
autoload :AAindex2, 'bio/db/aaindex' # change to AAindex::AAindex2 ?
autoload :TRANSFAC, 'bio/db/transfac'
autoload :PROSITE, 'bio/db/prosite'
autoload :LITDB, 'bio/db/litdb'
autoload :MEDLINE, 'bio/db/medline'
autoload :FANTOM, 'bio/db/fantom'
autoload :GO, 'bio/db/go'
autoload :PDB, 'bio/db/pdb'
autoload :NBRF, 'bio/db/nbrf'
autoload :REBASE, 'bio/db/rebase'
autoload :SOFT, 'bio/db/soft'
autoload :Lasergene, 'bio/db/lasergene'
autoload :SangerChromatogram, 'bio/db/sanger_chromatogram/chromatogram'
autoload :Scf, 'bio/db/sanger_chromatogram/scf'
autoload :Abif, 'bio/db/sanger_chromatogram/abif'
autoload :Newick, 'bio/db/newick'
autoload :Nexus, 'bio/db/nexus'
### IO interface modules
autoload :Registry, 'bio/io/registry'
autoload :Fetch, 'bio/io/fetch'
autoload :FlatFile, 'bio/io/flatfile'
autoload :FlatFileIndex, 'bio/io/flatfile/index' # chage to FlatFile::Index ?
## below are described in bio/io/flatfile/index.rb
#class FlatFileIndex
# autoload :Indexer, 'bio/io/flatfile/indexer'
# autoload :BDBdefault, 'bio/io/flatfile/bdb'
# autoload :BDBwrapper, 'bio/io/flatfile/bdb'
# autoload :BDB_1, 'bio/io/flatfile/bdb'
#end
autoload :PubMed, 'bio/io/pubmed'
autoload :DAS, 'bio/io/das'
autoload :Hinv, 'bio/io/hinv'
## below are described in bio/appl/blast.rb
#class Blast
# autoload :Fastacmd, 'bio/io/fastacmd'
#end
autoload :NCBI, 'bio/io/ncbirest'
## below are described in bio/io/ncbirest.rb
#class NCBI
# autoload :REST, 'bio/io/ncbirest'
#end
autoload :TogoWS, 'bio/io/togows'
### Applications
autoload :Fasta, 'bio/appl/fasta'
## below are described in bio/appl/fasta.rb
#class Fasta
# autoload :Report, 'bio/appl/fasta/format10'
#end
autoload :Blast, 'bio/appl/blast'
## below are described in bio/appl/blast.rb
#class Blast
# autoload :Fastacmd, 'bio/io/fastacmd'
# autoload :Report, 'bio/appl/blast/report'
# autoload :Default, 'bio/appl/blast/format0'
# autoload :WU, 'bio/appl/blast/wublast'
# autoload :Bl2seq, 'bio/appl/bl2seq/report'
# autoload :RPSBlast, 'bio/appl/blast/rpsblast'
# autoload :NCBIOptions, 'bio/appl/blast/ncbioptions'
# autoload :Remote, 'bio/appl/blast/remote'
#end
autoload :HMMER, 'bio/appl/hmmer'
## below are described in bio/appl/hmmer.rb
#class HMMER
# autoload :Report, 'bio/appl/hmmer/report'
#end
autoload :EMBOSS, 'bio/appl/emboss' # use bio/command, improve
autoload :PSORT, 'bio/appl/psort'
## below are described in bio/appl/psort.rb
#class PSORT
# class PSORT1
# autoload :Report, 'bio/appl/psort/report'
# end
# class PSORT2
# autoload :Report, 'bio/appl/psort/report'
# end
#end
autoload :TMHMM, 'bio/appl/tmhmm/report'
autoload :TargetP, 'bio/appl/targetp/report'
autoload :SOSUI, 'bio/appl/sosui/report'
autoload :Genscan, 'bio/appl/genscan/report'
autoload :ClustalW, 'bio/appl/clustalw'
## below are described in bio/appl/clustalw.rb
#class ClustalW
# autoload :Report, 'bio/appl/clustalw/report'
#end
autoload :MAFFT, 'bio/appl/mafft'
## below are described in bio/appl/mafft.rb
#class MAFFT
# autoload :Report, 'bio/appl/mafft/report'
#end
autoload :Tcoffee, 'bio/appl/tcoffee'
autoload :Muscle, 'bio/appl/muscle'
autoload :Probcons, 'bio/appl/probcons'
autoload :Sim4, 'bio/appl/sim4'
## below are described in bio/appl/sim4.rb
#class Sim4
# autoload :Report, 'bio/appl/sim4/report'
#end
autoload :Spidey, 'bio/appl/spidey/report'
autoload :Blat, 'bio/appl/blat/report'
module GCG
autoload :Msf, 'bio/appl/gcg/msf'
autoload :Seq, 'bio/appl/gcg/seq'
end
module Phylip
autoload :PhylipFormat, 'bio/appl/phylip/alignment'
autoload :DistanceMatrix, 'bio/appl/phylip/distance_matrix'
end
autoload :Iprscan, 'bio/appl/iprscan/report'
autoload :PAML, 'bio/appl/paml/common'
## below are described in bio/appl/paml/common.rb
# module PAML
# autoload :Codeml, 'bio/appl/paml/codeml'
# autoload :Baseml, 'bio/appl/paml/baseml'
# autoload :Yn00, 'bio/appl/paml/yn00'
# end
### Utilities
autoload :SiRNA, 'bio/util/sirna'
autoload :ColorScheme, 'bio/util/color_scheme'
autoload :ContingencyTable, 'bio/util/contingency_table'
autoload :RestrictionEnzyme, 'bio/util/restriction_enzyme'
### Service libraries
autoload :Command, 'bio/command'
end
|