bio 1.0.0 → 1.1.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/bin/bioruby +14 -122
- data/bin/br_biofetch.rb +2 -2
- data/bin/br_bioflat.rb +2 -2
- data/bin/br_biogetseq.rb +2 -2
- data/bin/br_pmfetch.rb +3 -3
- data/doc/Changes-0.7.rd +77 -0
- data/doc/KEGG_API.rd +523 -232
- data/doc/KEGG_API.rd.ja +529 -207
- data/doc/Tutorial.rd +48 -11
- data/lib/bio.rb +59 -6
- data/lib/bio/alignment.rb +713 -103
- data/lib/bio/appl/bl2seq/report.rb +2 -18
- data/lib/bio/appl/blast.rb +108 -91
- data/lib/bio/appl/blast/format0.rb +33 -18
- data/lib/bio/appl/blast/format8.rb +6 -20
- data/lib/bio/appl/blast/report.rb +293 -429
- data/lib/bio/appl/blast/rexml.rb +8 -22
- data/lib/bio/appl/blast/wublast.rb +21 -12
- data/lib/bio/appl/blast/xmlparser.rb +180 -183
- data/lib/bio/appl/blat/report.rb +127 -30
- data/lib/bio/appl/clustalw.rb +87 -59
- data/lib/bio/appl/clustalw/report.rb +20 -22
- data/lib/bio/appl/emboss.rb +113 -20
- data/lib/bio/appl/fasta.rb +173 -198
- data/lib/bio/appl/fasta/format10.rb +244 -347
- data/lib/bio/appl/gcg/msf.rb +212 -0
- data/lib/bio/appl/gcg/seq.rb +195 -0
- data/lib/bio/appl/genscan/report.rb +5 -23
- data/lib/bio/appl/hmmer.rb +8 -45
- data/lib/bio/appl/hmmer/report.rb +2 -20
- data/lib/bio/appl/iprscan/report.rb +374 -0
- data/lib/bio/appl/mafft.rb +87 -50
- data/lib/bio/appl/mafft/report.rb +151 -44
- data/lib/bio/appl/muscle.rb +52 -0
- data/lib/bio/appl/phylip/alignment.rb +129 -0
- data/lib/bio/appl/phylip/distance_matrix.rb +96 -0
- data/lib/bio/appl/probcons.rb +41 -0
- data/lib/bio/appl/psort.rb +89 -96
- data/lib/bio/appl/psort/report.rb +6 -22
- data/lib/bio/appl/pts1.rb +263 -0
- data/lib/bio/appl/sim4.rb +26 -36
- data/lib/bio/appl/sim4/report.rb +2 -18
- data/lib/bio/appl/sosui/report.rb +5 -20
- data/lib/bio/appl/spidey/report.rb +2 -2
- data/lib/bio/appl/targetp/report.rb +4 -20
- data/lib/bio/appl/tcoffee.rb +55 -0
- data/lib/bio/appl/tmhmm/report.rb +4 -20
- data/lib/bio/command.rb +235 -64
- data/lib/bio/data/aa.rb +21 -26
- data/lib/bio/data/codontable.rb +2 -20
- data/lib/bio/data/na.rb +19 -4
- data/lib/bio/db.rb +27 -12
- data/lib/bio/db/aaindex.rb +2 -20
- data/lib/bio/db/embl/common.rb +4 -21
- data/lib/bio/db/embl/embl.rb +33 -85
- data/lib/bio/db/embl/sptr.rb +612 -302
- data/lib/bio/db/embl/swissprot.rb +10 -29
- data/lib/bio/db/embl/trembl.rb +10 -29
- data/lib/bio/db/embl/uniprot.rb +10 -29
- data/lib/bio/db/fantom.rb +15 -20
- data/lib/bio/db/fasta.rb +3 -3
- data/lib/bio/db/genbank/common.rb +37 -46
- data/lib/bio/db/genbank/ddbj.rb +6 -18
- data/lib/bio/db/genbank/genbank.rb +47 -186
- data/lib/bio/db/genbank/genpept.rb +4 -17
- data/lib/bio/db/genbank/refseq.rb +4 -17
- data/lib/bio/db/gff.rb +103 -35
- data/lib/bio/db/go.rb +4 -20
- data/lib/bio/db/kegg/brite.rb +26 -36
- data/lib/bio/db/kegg/compound.rb +81 -85
- data/lib/bio/db/kegg/drug.rb +98 -0
- data/lib/bio/db/kegg/enzyme.rb +133 -110
- data/lib/bio/db/kegg/expression.rb +2 -20
- data/lib/bio/db/kegg/genes.rb +208 -238
- data/lib/bio/db/kegg/genome.rb +164 -285
- data/lib/bio/db/kegg/glycan.rb +114 -157
- data/lib/bio/db/kegg/keggtab.rb +242 -303
- data/lib/bio/db/kegg/kgml.rb +117 -160
- data/lib/bio/db/kegg/orthology.rb +112 -0
- data/lib/bio/db/kegg/reaction.rb +54 -69
- data/lib/bio/db/kegg/taxonomy.rb +331 -0
- data/lib/bio/db/lasergene.rb +209 -0
- data/lib/bio/db/litdb.rb +3 -27
- data/lib/bio/db/medline.rb +228 -249
- data/lib/bio/db/nbrf.rb +3 -3
- data/lib/bio/db/newick.rb +510 -0
- data/lib/bio/db/nexus.rb +1854 -0
- data/lib/bio/db/pdb.rb +5 -17
- data/lib/bio/db/pdb/atom.rb +2 -18
- data/lib/bio/db/pdb/chain.rb +2 -18
- data/lib/bio/db/pdb/chemicalcomponent.rb +2 -18
- data/lib/bio/db/pdb/model.rb +2 -18
- data/lib/bio/db/pdb/pdb.rb +73 -34
- data/lib/bio/db/pdb/residue.rb +4 -20
- data/lib/bio/db/pdb/utils.rb +2 -18
- data/lib/bio/db/prosite.rb +403 -422
- data/lib/bio/db/rebase.rb +84 -40
- data/lib/bio/db/soft.rb +404 -0
- data/lib/bio/db/transfac.rb +5 -17
- data/lib/bio/feature.rb +106 -52
- data/lib/bio/io/das.rb +32 -42
- data/lib/bio/io/dbget.rb +2 -20
- data/lib/bio/io/ddbjxml.rb +77 -138
- data/lib/bio/io/ebisoap.rb +158 -0
- data/lib/bio/io/ensembl.rb +229 -0
- data/lib/bio/io/fastacmd.rb +89 -82
- data/lib/bio/io/fetch.rb +163 -96
- data/lib/bio/io/flatfile.rb +170 -73
- data/lib/bio/io/flatfile/bdb.rb +3 -16
- data/lib/bio/io/flatfile/index.rb +2 -2
- data/lib/bio/io/flatfile/indexer.rb +3 -2
- data/lib/bio/io/higet.rb +12 -31
- data/lib/bio/io/keggapi.rb +210 -269
- data/lib/bio/io/ncbisoap.rb +155 -0
- data/lib/bio/io/pubmed.rb +169 -147
- data/lib/bio/io/registry.rb +4 -20
- data/lib/bio/io/soapwsdl.rb +43 -38
- data/lib/bio/io/sql.rb +242 -305
- data/lib/bio/location.rb +407 -285
- data/lib/bio/map.rb +410 -0
- data/lib/bio/pathway.rb +558 -695
- data/lib/bio/reference.rb +272 -75
- data/lib/bio/sequence.rb +255 -13
- data/lib/bio/sequence/aa.rb +71 -10
- data/lib/bio/sequence/common.rb +187 -33
- data/lib/bio/sequence/compat.rb +59 -4
- data/lib/bio/sequence/format.rb +54 -7
- data/lib/bio/sequence/generic.rb +3 -3
- data/lib/bio/sequence/na.rb +328 -26
- data/lib/bio/shell.rb +11 -4
- data/lib/bio/shell/core.rb +221 -160
- data/lib/bio/shell/demo.rb +18 -15
- data/lib/bio/shell/interface.rb +14 -12
- data/lib/bio/shell/irb.rb +95 -0
- data/lib/bio/shell/object.rb +45 -26
- data/lib/bio/shell/plugin/blast.rb +42 -0
- data/lib/bio/shell/plugin/codon.rb +22 -14
- data/lib/bio/shell/plugin/das.rb +58 -0
- data/lib/bio/shell/plugin/emboss.rb +2 -2
- data/lib/bio/shell/plugin/entry.rb +22 -11
- data/lib/bio/shell/plugin/flatfile.rb +2 -2
- data/lib/bio/shell/plugin/keggapi.rb +13 -6
- data/lib/bio/shell/plugin/midi.rb +4 -4
- data/lib/bio/shell/plugin/obda.rb +2 -2
- data/lib/bio/shell/plugin/psort.rb +56 -0
- data/lib/bio/shell/plugin/seq.rb +35 -8
- data/lib/bio/shell/plugin/soap.rb +87 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/bioruby_generator.rb +29 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_classes.rhtml +4 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_log.rhtml +27 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_methods.rhtml +11 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_modules.rhtml +4 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/_variables.rhtml +7 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-bg.gif +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-console.png +0 -0
- data/lib/bio/shell/rails/{public/images/icon.png → vendor/plugins/generators/bioruby/templates/bioruby-gem.png} +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby-link.gif +0 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.css +369 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby.rhtml +47 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_controller.rb +144 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/bioruby_helper.rb +47 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/commands.rhtml +8 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/history.rhtml +10 -0
- data/lib/bio/shell/rails/vendor/plugins/generators/bioruby/templates/index.rhtml +22 -0
- data/lib/bio/shell/script.rb +25 -0
- data/lib/bio/shell/setup.rb +109 -0
- data/lib/bio/shell/web.rb +70 -58
- data/lib/bio/tree.rb +850 -0
- data/lib/bio/util/color_scheme.rb +84 -107
- data/lib/bio/util/color_scheme/buried.rb +5 -24
- data/lib/bio/util/color_scheme/helix.rb +5 -24
- data/lib/bio/util/color_scheme/hydropathy.rb +5 -24
- data/lib/bio/util/color_scheme/nucleotide.rb +5 -24
- data/lib/bio/util/color_scheme/strand.rb +5 -24
- data/lib/bio/util/color_scheme/taylor.rb +5 -24
- data/lib/bio/util/color_scheme/turn.rb +5 -24
- data/lib/bio/util/color_scheme/zappo.rb +5 -24
- data/lib/bio/util/contingency_table.rb +70 -43
- data/lib/bio/util/restriction_enzyme.rb +228 -0
- data/lib/bio/util/restriction_enzyme/analysis.rb +249 -0
- data/lib/bio/util/restriction_enzyme/analysis_basic.rb +217 -0
- data/lib/bio/util/restriction_enzyme/cut_symbol.rb +107 -0
- data/lib/bio/util/restriction_enzyme/double_stranded.rb +321 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/aligned_strands.rb +130 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair.rb +103 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_location_pair_in_enzyme_notation.rb +38 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations.rb +76 -0
- data/lib/bio/util/restriction_enzyme/double_stranded/cut_locations_in_enzyme_notation.rb +107 -0
- data/lib/bio/util/restriction_enzyme/enzymes.yaml +7061 -0
- data/lib/bio/util/restriction_enzyme/range/cut_range.rb +24 -0
- data/lib/bio/util/restriction_enzyme/range/cut_ranges.rb +47 -0
- data/lib/bio/util/restriction_enzyme/range/horizontal_cut_range.rb +67 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range.rb +257 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/calculated_cuts.rb +242 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/fragment.rb +51 -0
- data/lib/bio/util/restriction_enzyme/range/sequence_range/fragments.rb +41 -0
- data/lib/bio/util/restriction_enzyme/range/vertical_cut_range.rb +77 -0
- data/lib/bio/util/restriction_enzyme/single_strand.rb +199 -0
- data/lib/bio/util/restriction_enzyme/single_strand/cut_locations_in_enzyme_notation.rb +135 -0
- data/lib/bio/util/restriction_enzyme/single_strand_complement.rb +23 -0
- data/lib/bio/util/restriction_enzyme/string_formatting.rb +111 -0
- data/lib/bio/util/sirna.rb +4 -22
- data/sample/color_scheme_na.rb +4 -12
- data/sample/enzymes.rb +78 -0
- data/sample/goslim.rb +5 -13
- data/sample/psortplot_html.rb +4 -12
- data/test/data/blast/2.2.15.blastp.m7 +876 -0
- data/test/data/embl/AB090716.embl.rel89 +63 -0
- data/test/data/fasta/example1.txt +75 -0
- data/test/data/fasta/example2.txt +21 -0
- data/test/data/iprscan/merged.raw +32 -0
- data/test/data/iprscan/merged.txt +74 -0
- data/test/data/soft/GDS100_partial.soft +92 -0
- data/test/data/soft/GSE3457_family_partial.soft +874 -0
- data/test/functional/bio/io/test_ensembl.rb +103 -0
- data/test/functional/bio/io/test_soapwsdl.rb +5 -17
- data/test/unit/bio/appl/bl2seq/test_report.rb +2 -2
- data/test/unit/bio/appl/blast/test_report.rb +3 -16
- data/test/unit/bio/appl/blast/test_xmlparser.rb +4 -16
- data/test/unit/bio/appl/genscan/test_report.rb +3 -16
- data/test/unit/bio/appl/hmmer/test_report.rb +3 -16
- data/test/unit/bio/appl/iprscan/test_report.rb +338 -0
- data/test/unit/bio/appl/mafft/test_report.rb +63 -0
- data/test/unit/bio/appl/sosui/test_report.rb +3 -16
- data/test/unit/bio/appl/targetp/test_report.rb +3 -16
- data/test/unit/bio/appl/test_blast.rb +3 -16
- data/test/unit/bio/appl/test_fasta.rb +4 -16
- data/test/unit/bio/appl/test_pts1.rb +140 -0
- data/test/unit/bio/appl/tmhmm/test_report.rb +3 -16
- data/test/unit/bio/data/test_aa.rb +4 -17
- data/test/unit/bio/data/test_codontable.rb +3 -16
- data/test/unit/bio/data/test_na.rb +3 -3
- data/test/unit/bio/db/embl/test_common.rb +3 -16
- data/test/unit/bio/db/embl/test_embl.rb +3 -16
- data/test/unit/bio/db/embl/test_embl_rel89.rb +219 -0
- data/test/unit/bio/db/embl/test_sptr.rb +1548 -41
- data/test/unit/bio/db/embl/test_uniprot.rb +3 -16
- data/test/unit/bio/db/kegg/test_genes.rb +3 -16
- data/test/unit/bio/db/pdb/test_pdb.rb +7 -24
- data/test/unit/bio/db/test_aaindex.rb +2 -2
- data/test/unit/bio/db/test_fasta.rb +3 -16
- data/test/unit/bio/db/test_gff.rb +3 -16
- data/test/unit/bio/db/test_lasergene.rb +95 -0
- data/test/unit/bio/db/test_newick.rb +56 -0
- data/test/unit/bio/db/test_nexus.rb +360 -0
- data/test/unit/bio/db/test_prosite.rb +5 -18
- data/test/unit/bio/db/test_rebase.rb +11 -25
- data/test/unit/bio/db/test_soft.rb +138 -0
- data/test/unit/bio/io/test_ddbjxml.rb +5 -17
- data/test/unit/bio/io/test_ensembl.rb +109 -0
- data/test/unit/bio/io/test_fastacmd.rb +3 -16
- data/test/unit/bio/io/test_flatfile.rb +237 -0
- data/test/unit/bio/io/test_soapwsdl.rb +4 -17
- data/test/unit/bio/sequence/test_aa.rb +3 -3
- data/test/unit/bio/sequence/test_common.rb +3 -16
- data/test/unit/bio/sequence/test_compat.rb +3 -16
- data/test/unit/bio/sequence/test_na.rb +29 -3
- data/test/unit/bio/shell/plugin/test_seq.rb +8 -8
- data/test/unit/bio/test_alignment.rb +16 -27
- data/test/unit/bio/test_command.rb +242 -25
- data/test/unit/bio/test_db.rb +3 -16
- data/test/unit/bio/test_feature.rb +4 -16
- data/test/unit/bio/test_location.rb +4 -16
- data/test/unit/bio/test_map.rb +230 -0
- data/test/unit/bio/test_pathway.rb +4 -16
- data/test/unit/bio/test_reference.rb +2 -2
- data/test/unit/bio/test_sequence.rb +7 -19
- data/test/unit/bio/test_shell.rb +3 -16
- data/test/unit/bio/test_tree.rb +593 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_calculated_cuts.rb +299 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_cut_ranges.rb +103 -0
- data/test/unit/bio/util/restriction_enzyme/analysis/test_sequence_range.rb +240 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_aligned_strands.rb +100 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair.rb +75 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_location_pair_in_enzyme_notation.rb +73 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations.rb +53 -0
- data/test/unit/bio/util/restriction_enzyme/double_stranded/test_cut_locations_in_enzyme_notation.rb +104 -0
- data/test/unit/bio/util/restriction_enzyme/single_strand/test_cut_locations_in_enzyme_notation.rb +83 -0
- data/test/unit/bio/util/restriction_enzyme/test_analysis.rb +246 -0
- data/test/unit/bio/util/restriction_enzyme/test_cut_symbol.rb +44 -0
- data/test/unit/bio/util/restriction_enzyme/test_double_stranded.rb +115 -0
- data/test/unit/bio/util/restriction_enzyme/test_single_strand.rb +147 -0
- data/test/unit/bio/util/restriction_enzyme/test_single_strand_complement.rb +147 -0
- data/test/unit/bio/util/restriction_enzyme/test_string_formatting.rb +60 -0
- data/test/unit/bio/util/test_color_scheme.rb +6 -18
- data/test/unit/bio/util/test_contingency_table.rb +6 -18
- data/test/unit/bio/util/test_restriction_enzyme.rb +42 -0
- data/test/unit/bio/util/test_sirna.rb +3 -16
- metadata +228 -169
- data/doc/BioRuby.rd.ja +0 -225
- data/doc/Design.rd.ja +0 -341
- data/doc/TODO.rd.ja +0 -138
- data/lib/bio/appl/fasta/format6.rb +0 -37
- data/lib/bio/db/kegg/cell.rb +0 -88
- data/lib/bio/db/kegg/ko.rb +0 -178
- data/lib/bio/shell/rails/Rakefile +0 -10
- data/lib/bio/shell/rails/app/controllers/application.rb +0 -4
- data/lib/bio/shell/rails/app/controllers/shell_controller.rb +0 -94
- data/lib/bio/shell/rails/app/helpers/application_helper.rb +0 -3
- data/lib/bio/shell/rails/app/models/shell_connection.rb +0 -30
- data/lib/bio/shell/rails/app/views/layouts/shell.rhtml +0 -37
- data/lib/bio/shell/rails/app/views/shell/history.rhtml +0 -5
- data/lib/bio/shell/rails/app/views/shell/index.rhtml +0 -2
- data/lib/bio/shell/rails/app/views/shell/show.rhtml +0 -13
- data/lib/bio/shell/rails/config/boot.rb +0 -19
- data/lib/bio/shell/rails/config/database.yml +0 -85
- data/lib/bio/shell/rails/config/environment.rb +0 -53
- data/lib/bio/shell/rails/config/environments/development.rb +0 -19
- data/lib/bio/shell/rails/config/environments/production.rb +0 -19
- data/lib/bio/shell/rails/config/environments/test.rb +0 -19
- data/lib/bio/shell/rails/config/routes.rb +0 -19
- data/lib/bio/shell/rails/doc/README_FOR_APP +0 -2
- data/lib/bio/shell/rails/public/404.html +0 -8
- data/lib/bio/shell/rails/public/500.html +0 -8
- data/lib/bio/shell/rails/public/dispatch.cgi +0 -10
- data/lib/bio/shell/rails/public/dispatch.fcgi +0 -24
- data/lib/bio/shell/rails/public/dispatch.rb +0 -10
- data/lib/bio/shell/rails/public/favicon.ico +0 -0
- data/lib/bio/shell/rails/public/images/rails.png +0 -0
- data/lib/bio/shell/rails/public/index.html +0 -277
- data/lib/bio/shell/rails/public/javascripts/controls.js +0 -750
- data/lib/bio/shell/rails/public/javascripts/dragdrop.js +0 -584
- data/lib/bio/shell/rails/public/javascripts/effects.js +0 -854
- data/lib/bio/shell/rails/public/javascripts/prototype.js +0 -1785
- data/lib/bio/shell/rails/public/robots.txt +0 -1
- data/lib/bio/shell/rails/public/stylesheets/main.css +0 -187
- data/lib/bio/shell/rails/script/about +0 -3
- data/lib/bio/shell/rails/script/breakpointer +0 -3
- data/lib/bio/shell/rails/script/console +0 -3
- data/lib/bio/shell/rails/script/destroy +0 -3
- data/lib/bio/shell/rails/script/generate +0 -3
- data/lib/bio/shell/rails/script/performance/benchmarker +0 -3
- data/lib/bio/shell/rails/script/performance/profiler +0 -3
- data/lib/bio/shell/rails/script/plugin +0 -3
- data/lib/bio/shell/rails/script/process/reaper +0 -3
- data/lib/bio/shell/rails/script/process/spawner +0 -3
- data/lib/bio/shell/rails/script/process/spinner +0 -3
- data/lib/bio/shell/rails/script/runner +0 -3
- data/lib/bio/shell/rails/script/server +0 -42
- data/lib/bio/shell/rails/test/test_helper.rb +0 -28
data/lib/bio/db/go.rb
CHANGED
|
@@ -1,33 +1,17 @@
|
|
|
1
1
|
#
|
|
2
2
|
# = bio/db/go.rb - Classes for Gene Ontology
|
|
3
3
|
#
|
|
4
|
-
# Copyright:: Copyright (C) 2003
|
|
5
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2003
|
|
5
|
+
# Mitsuteru C. Nakao <n@bioruby.org>
|
|
6
|
+
# License:: The Ruby License
|
|
6
7
|
#
|
|
7
|
-
# $Id: go.rb,v 1.
|
|
8
|
+
# $Id: go.rb,v 1.11 2007/04/05 23:35:40 trevor Exp $
|
|
8
9
|
#
|
|
9
10
|
# == Gene Ontology
|
|
10
11
|
#
|
|
11
12
|
# == Example
|
|
12
13
|
#
|
|
13
14
|
# == References
|
|
14
|
-
#--
|
|
15
|
-
#
|
|
16
|
-
# This library is free software; you can redistribute it and/or
|
|
17
|
-
# modify it under the terms of the GNU Lesser General Public
|
|
18
|
-
# License as published by the Free Software Foundation; either
|
|
19
|
-
# version 2 of the License, or (at your option) any later version.
|
|
20
|
-
#
|
|
21
|
-
# This library is distributed in the hope that it will be useful,
|
|
22
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
24
|
-
# Lesser General Public License for more details.
|
|
25
|
-
#
|
|
26
|
-
# You should have received a copy of the GNU Lesser General Public
|
|
27
|
-
# License along with this library; if not, write to the Free Software
|
|
28
|
-
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
29
|
-
#
|
|
30
|
-
#++
|
|
31
15
|
#
|
|
32
16
|
|
|
33
17
|
require 'bio/pathway'
|
data/lib/bio/db/kegg/brite.rb
CHANGED
|
@@ -1,51 +1,41 @@
|
|
|
1
1
|
#
|
|
2
|
-
# bio/db/kegg/brite.rb - KEGG/BRITE database class
|
|
2
|
+
# = bio/db/kegg/brite.rb - KEGG/BRITE database class
|
|
3
3
|
#
|
|
4
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2001 Toshiaki Katayama <k@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
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: brite.rb,v 0.6 2005/09/08 01:22:11 k Exp $
|
|
7
|
+
# $Id: brite.rb,v 0.8 2007/04/05 23:35:41 trevor Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'bio/db'
|
|
24
11
|
|
|
25
12
|
module Bio
|
|
13
|
+
class KEGG
|
|
26
14
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
15
|
+
# == Note
|
|
16
|
+
#
|
|
17
|
+
# This class is not completely implemented, but obsolete as the original
|
|
18
|
+
# database BRITE has changed it's meaning.
|
|
19
|
+
#
|
|
20
|
+
class BRITE < KEGGDB
|
|
33
21
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
end
|
|
22
|
+
DELIMITER = RS = "\n///\n"
|
|
23
|
+
TAGSIZE = 12
|
|
37
24
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# FACTORS
|
|
42
|
-
# INTERACTION
|
|
43
|
-
# SOURCE
|
|
44
|
-
# REFERENCE
|
|
25
|
+
def initialize(entry)
|
|
26
|
+
super(entry, TAGSIZE)
|
|
27
|
+
end
|
|
45
28
|
|
|
46
|
-
|
|
29
|
+
# ENTRY
|
|
30
|
+
# DEFINITION
|
|
31
|
+
# RELATION
|
|
32
|
+
# FACTORS
|
|
33
|
+
# INTERACTION
|
|
34
|
+
# SOURCE
|
|
35
|
+
# REFERENCE
|
|
47
36
|
|
|
48
|
-
|
|
37
|
+
end # BRITE
|
|
49
38
|
|
|
50
|
-
end
|
|
39
|
+
end # KEGG
|
|
40
|
+
end # Bio
|
|
51
41
|
|
data/lib/bio/db/kegg/compound.rb
CHANGED
|
@@ -1,115 +1,111 @@
|
|
|
1
1
|
#
|
|
2
|
-
# bio/db/kegg/compound.rb - KEGG COMPOUND database class
|
|
2
|
+
# = bio/db/kegg/compound.rb - KEGG COMPOUND database class
|
|
3
3
|
#
|
|
4
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2001, 2002, 2004, 2007 Toshiaki Katayama <k@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
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: compound.rb,v 0.11 2005/09/08 01:22:11 k Exp $
|
|
7
|
+
# $Id: compound.rb,v 0.16 2007/06/28 11:27:24 k Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'bio/db'
|
|
24
11
|
|
|
25
12
|
module Bio
|
|
13
|
+
class KEGG
|
|
26
14
|
|
|
27
|
-
|
|
15
|
+
class COMPOUND < KEGGDB
|
|
28
16
|
|
|
29
|
-
|
|
17
|
+
DELIMITER = RS = "\n///\n"
|
|
18
|
+
TAGSIZE = 12
|
|
30
19
|
|
|
31
|
-
|
|
32
|
-
|
|
20
|
+
def initialize(entry)
|
|
21
|
+
super(entry, TAGSIZE)
|
|
22
|
+
end
|
|
33
23
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
24
|
+
# ENTRY
|
|
25
|
+
def entry_id
|
|
26
|
+
field_fetch('ENTRY')[/\S+/]
|
|
27
|
+
end
|
|
37
28
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
end
|
|
43
|
-
@data['ENTRY']
|
|
44
|
-
end
|
|
29
|
+
# NAME
|
|
30
|
+
def names
|
|
31
|
+
field_fetch('NAME').split(/\s*;\s*/)
|
|
32
|
+
end
|
|
45
33
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
end
|
|
50
|
-
def name
|
|
51
|
-
names[0]
|
|
52
|
-
end
|
|
34
|
+
def name
|
|
35
|
+
names.first
|
|
36
|
+
end
|
|
53
37
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
38
|
+
# FORMULA
|
|
39
|
+
def formula
|
|
40
|
+
field_fetch('FORMULA')
|
|
41
|
+
end
|
|
58
42
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
43
|
+
# MASS
|
|
44
|
+
def mass
|
|
45
|
+
field_fetch('MASS').to_f
|
|
46
|
+
end
|
|
63
47
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
48
|
+
# GLYCAN
|
|
49
|
+
def glycans
|
|
50
|
+
unless @data['GLYCAN']
|
|
51
|
+
@data['GLYCAN'] = fetch('GLYCAN').split(/\s+/)
|
|
52
|
+
end
|
|
53
|
+
@data['GLYCAN']
|
|
54
|
+
end
|
|
71
55
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
56
|
+
# REACTION
|
|
57
|
+
def reactions
|
|
58
|
+
unless @data['REACTION']
|
|
59
|
+
@data['REACTION'] = fetch('REACTION').split(/\s+/)
|
|
60
|
+
end
|
|
61
|
+
@data['REACTION']
|
|
62
|
+
end
|
|
79
63
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
64
|
+
# RPAIR
|
|
65
|
+
def rpairs
|
|
66
|
+
unless @data['RPAIR']
|
|
67
|
+
@data['RPAIR'] = fetch('RPAIR').split(/\s+/)
|
|
68
|
+
end
|
|
69
|
+
@data['RPAIR']
|
|
70
|
+
end
|
|
84
71
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
if /\(/.match(field) # old version
|
|
90
|
-
@data['ENZYME'] = field.scan(/\S+ \(\S+\)/)
|
|
91
|
-
else
|
|
92
|
-
@data['ENZYME'] = field.scan(/\S+/)
|
|
93
|
-
end
|
|
94
|
-
end
|
|
95
|
-
@data['ENZYME']
|
|
96
|
-
end
|
|
72
|
+
# PATHWAY
|
|
73
|
+
def pathways
|
|
74
|
+
lines_fetch('PATHWAY')
|
|
75
|
+
end
|
|
97
76
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
77
|
+
# ENZYME
|
|
78
|
+
def enzymes
|
|
79
|
+
unless @data['ENZYME']
|
|
80
|
+
field = fetch('ENZYME')
|
|
81
|
+
if /\(/.match(field) # old version
|
|
82
|
+
@data['ENZYME'] = field.scan(/\S+ \(\S+\)/)
|
|
83
|
+
else
|
|
84
|
+
@data['ENZYME'] = field.scan(/\S+/)
|
|
101
85
|
end
|
|
86
|
+
end
|
|
87
|
+
@data['ENZYME']
|
|
88
|
+
end
|
|
102
89
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
90
|
+
# DBLINKS
|
|
91
|
+
def dblinks
|
|
92
|
+
lines_fetch('DBLINKS')
|
|
93
|
+
end
|
|
107
94
|
|
|
108
|
-
|
|
95
|
+
# ATOM, BOND
|
|
96
|
+
def kcf
|
|
97
|
+
return "#{get('ATOM')}#{get('BOND')}"
|
|
98
|
+
end
|
|
109
99
|
|
|
100
|
+
# COMMENT
|
|
101
|
+
def comment
|
|
102
|
+
field_fetch('COMMENT')
|
|
110
103
|
end
|
|
111
104
|
|
|
112
|
-
end
|
|
105
|
+
end # COMPOUND
|
|
106
|
+
|
|
107
|
+
end # KEGG
|
|
108
|
+
end # Bio
|
|
113
109
|
|
|
114
110
|
|
|
115
111
|
if __FILE__ == $0
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
#
|
|
2
|
+
# = bio/db/kegg/drug.rb - KEGG DRUG database class
|
|
3
|
+
#
|
|
4
|
+
# Copyright:: Copyright (C) 2007 Toshiaki Katayama <k@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
6
|
+
#
|
|
7
|
+
# $Id: drug.rb,v 1.3 2007/06/28 11:27:24 k Exp $
|
|
8
|
+
#
|
|
9
|
+
|
|
10
|
+
require 'bio/db'
|
|
11
|
+
|
|
12
|
+
module Bio
|
|
13
|
+
class KEGG
|
|
14
|
+
|
|
15
|
+
class DRUG < KEGGDB
|
|
16
|
+
|
|
17
|
+
DELIMITER = RS = "\n///\n"
|
|
18
|
+
TAGSIZE = 12
|
|
19
|
+
|
|
20
|
+
def initialize(entry)
|
|
21
|
+
super(entry, TAGSIZE)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# ENTRY
|
|
25
|
+
def entry_id
|
|
26
|
+
field_fetch('ENTRY')[/\S+/]
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# NAME
|
|
30
|
+
def names
|
|
31
|
+
field_fetch('NAME').split(/\s*;\s*/)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def name
|
|
35
|
+
names.first
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
# FORMULA
|
|
39
|
+
def formula
|
|
40
|
+
field_fetch('FORMULA')
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
# MASS
|
|
44
|
+
def mass
|
|
45
|
+
field_fetch('MASS').to_f
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
# ACTIVITY
|
|
49
|
+
def activity
|
|
50
|
+
field_fetch('ACTIVITY')
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
# REMARK
|
|
54
|
+
def remark
|
|
55
|
+
field_fetch('REMARK')
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
# COMMENT
|
|
59
|
+
def comment
|
|
60
|
+
field_fetch('COMMENT')
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
# PATHWAY
|
|
64
|
+
def pathways
|
|
65
|
+
lines_fetch('DBLINKS')
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
# DBLINKS
|
|
69
|
+
def dblinks
|
|
70
|
+
lines_fetch('DBLINKS')
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# ATOM, BOND
|
|
74
|
+
def kcf
|
|
75
|
+
return "#{get('ATOM')}#{get('BOND')}"
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
end # DRUG
|
|
79
|
+
|
|
80
|
+
end # KEGG
|
|
81
|
+
end # Bio
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
if __FILE__ == $0
|
|
85
|
+
entry = ARGF.read # dr:D00001
|
|
86
|
+
dr = Bio::KEGG::DRUG.new(entry)
|
|
87
|
+
p dr.entry_id
|
|
88
|
+
p dr.names
|
|
89
|
+
p dr.name
|
|
90
|
+
p dr.formula
|
|
91
|
+
p dr.mass
|
|
92
|
+
p dr.activity
|
|
93
|
+
p dr.remark
|
|
94
|
+
p dr.comment
|
|
95
|
+
p dr.dblinks
|
|
96
|
+
p dr.kcf
|
|
97
|
+
end
|
|
98
|
+
|
data/lib/bio/db/kegg/enzyme.rb
CHANGED
|
@@ -1,125 +1,148 @@
|
|
|
1
1
|
#
|
|
2
|
-
# bio/db/kegg/enzyme.rb - KEGG/ENZYME database class
|
|
2
|
+
# = bio/db/kegg/enzyme.rb - KEGG/ENZYME database class
|
|
3
3
|
#
|
|
4
|
-
#
|
|
4
|
+
# Copyright:: Copyright (C) 2001, 2002, 2007 Toshiaki Katayama <k@bioruby.org>
|
|
5
|
+
# License:: The Ruby License
|
|
5
6
|
#
|
|
6
|
-
#
|
|
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: enzyme.rb,v 0.8 2005/09/08 01:22:11 k Exp $
|
|
7
|
+
# $Id: enzyme.rb,v 0.11 2007/04/05 23:35:41 trevor Exp $
|
|
21
8
|
#
|
|
22
9
|
|
|
23
10
|
require 'bio/db'
|
|
24
11
|
|
|
25
12
|
module Bio
|
|
13
|
+
class KEGG
|
|
14
|
+
|
|
15
|
+
class ENZYME < KEGGDB
|
|
16
|
+
|
|
17
|
+
DELIMITER = RS = "\n///\n"
|
|
18
|
+
TAGSIZE = 12
|
|
19
|
+
|
|
20
|
+
def initialize(entry)
|
|
21
|
+
super(entry, TAGSIZE)
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
# ENTRY
|
|
25
|
+
def entry
|
|
26
|
+
field_fetch('ENTRY')
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def entry_id
|
|
30
|
+
entry[/EC (\S+)/, 1]
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def obsolete?
|
|
34
|
+
entry[/Obsolete/] ? true : false
|
|
35
|
+
end
|
|
26
36
|
|
|
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
|
-
end
|
|
60
|
-
|
|
61
|
-
# REACTION ';'
|
|
62
|
-
def reaction
|
|
63
|
-
field_fetch('REACTION')
|
|
64
|
-
end
|
|
65
|
-
|
|
66
|
-
# SUBSTRATE
|
|
67
|
-
def substrates
|
|
68
|
-
lines_fetch('SUBSTRATE')
|
|
69
|
-
end
|
|
70
|
-
|
|
71
|
-
# PRODUCT
|
|
72
|
-
def products
|
|
73
|
-
lines_fetch('PRODUCT')
|
|
74
|
-
end
|
|
75
|
-
|
|
76
|
-
# COFACTOR
|
|
77
|
-
def cofactors
|
|
78
|
-
lines_fetch('COFACTOR')
|
|
79
|
-
end
|
|
80
|
-
|
|
81
|
-
# COMMENT
|
|
82
|
-
def comment
|
|
83
|
-
field_fetch('COMMENT')
|
|
84
|
-
end
|
|
85
|
-
|
|
86
|
-
# PATHWAY
|
|
87
|
-
def pathways
|
|
88
|
-
lines_fetch('PATHWAY')
|
|
89
|
-
end
|
|
90
|
-
|
|
91
|
-
# GENES
|
|
92
|
-
def genes
|
|
93
|
-
lines_fetch('GENES')
|
|
94
|
-
end
|
|
95
|
-
|
|
96
|
-
# DISEASE
|
|
97
|
-
def diseases
|
|
98
|
-
lines_fetch('DISEASE')
|
|
99
|
-
end
|
|
100
|
-
|
|
101
|
-
# MOTIF
|
|
102
|
-
def motifs
|
|
103
|
-
lines_fetch('MOTIF')
|
|
104
|
-
end
|
|
105
|
-
|
|
106
|
-
# STRUCTURES
|
|
107
|
-
def structures
|
|
108
|
-
unless @data['STRUCTURES']
|
|
109
|
-
@data['STRUCTURES'] =
|
|
110
|
-
fetch('STRUCTURES').sub(/(PDB: )*/,'').split(/\s+/)
|
|
111
|
-
end
|
|
112
|
-
@data['STRUCTURES']
|
|
113
|
-
end
|
|
114
|
-
|
|
115
|
-
# DBLINKS
|
|
116
|
-
def dblinks
|
|
117
|
-
lines_fetch('DBLINKS')
|
|
118
|
-
end
|
|
37
|
+
# NAME
|
|
38
|
+
def names
|
|
39
|
+
field_fetch('NAME').split(/\s*;\s*/)
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
def name
|
|
43
|
+
names.first
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# CLASS
|
|
47
|
+
def classes
|
|
48
|
+
lines_fetch('CLASS')
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
# SYSNAME
|
|
52
|
+
def sysname
|
|
53
|
+
field_fetch('SYSNAME')
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# REACTION
|
|
57
|
+
def reaction
|
|
58
|
+
field_fetch('REACTION')
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# ALL_REAC ';'
|
|
62
|
+
def all_reac
|
|
63
|
+
field_fetch('ALL_REAC')
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def iubmb_reactions
|
|
67
|
+
all_reac.sub(/;\s*\(other\).*/, '').split(/\s*;\s*/)
|
|
68
|
+
end
|
|
119
69
|
|
|
70
|
+
def kegg_reactions
|
|
71
|
+
reac = all_reac
|
|
72
|
+
if reac[/\(other\)/]
|
|
73
|
+
reac.sub(/.*\(other\)\s*/, '').split(/\s*;\s*/)
|
|
74
|
+
else
|
|
75
|
+
[]
|
|
120
76
|
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# SUBSTRATE
|
|
80
|
+
def substrates
|
|
81
|
+
field_fetch('SUBSTRATE').split(/\s*;\s*/)
|
|
82
|
+
end
|
|
83
|
+
|
|
84
|
+
# PRODUCT
|
|
85
|
+
def products
|
|
86
|
+
field_fetch('PRODUCT').split(/\s*;\s*/)
|
|
87
|
+
end
|
|
121
88
|
|
|
89
|
+
# INHIBITOR
|
|
90
|
+
def inhibitors
|
|
91
|
+
field_fetch('INHIBITOR').split(/\s*;\s*/)
|
|
122
92
|
end
|
|
123
93
|
|
|
124
|
-
|
|
94
|
+
# COFACTOR
|
|
95
|
+
def cofactors
|
|
96
|
+
field_fetch('COFACTOR').split(/\s*;\s*/)
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
# COMMENT
|
|
100
|
+
def comment
|
|
101
|
+
field_fetch('COMMENT')
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
# PATHWAY
|
|
105
|
+
def pathways
|
|
106
|
+
lines_fetch('PATHWAY')
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
# ORTHOLOG
|
|
110
|
+
def orthologs
|
|
111
|
+
lines_fetch('ORTHOLOG')
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
# GENES
|
|
115
|
+
def genes
|
|
116
|
+
lines_fetch('GENES')
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# DISEASE
|
|
120
|
+
def diseases
|
|
121
|
+
lines_fetch('DISEASE')
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
# MOTIF
|
|
125
|
+
def motifs
|
|
126
|
+
lines_fetch('MOTIF')
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
# STRUCTURES
|
|
130
|
+
def structures
|
|
131
|
+
unless @data['STRUCTURES']
|
|
132
|
+
@data['STRUCTURES'] = fetch('STRUCTURES').sub(/(PDB: )*/,'').split(/\s+/)
|
|
133
|
+
end
|
|
134
|
+
@data['STRUCTURES']
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
# REFERENCE
|
|
138
|
+
|
|
139
|
+
# DBLINKS
|
|
140
|
+
def dblinks
|
|
141
|
+
lines_fetch('DBLINKS')
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
end # ENZYME
|
|
145
|
+
|
|
146
|
+
end # KEGG
|
|
147
|
+
end # Bio
|
|
125
148
|
|