bio-shell 0.0.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 (52) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/BSDL +22 -0
  4. data/COPYING +56 -0
  5. data/COPYING.ja +51 -0
  6. data/Gemfile +6 -0
  7. data/LEGAL +8 -0
  8. data/README.md +62 -0
  9. data/Rakefile +20 -0
  10. data/bin/bioruby +44 -0
  11. data/bio-shell.gemspec +29 -0
  12. data/lib/bio/shell.rb +44 -0
  13. data/lib/bio/shell/core.rb +578 -0
  14. data/lib/bio/shell/demo.rb +146 -0
  15. data/lib/bio/shell/interface.rb +217 -0
  16. data/lib/bio/shell/irb.rb +94 -0
  17. data/lib/bio/shell/object.rb +71 -0
  18. data/lib/bio/shell/plugin/blast.rb +42 -0
  19. data/lib/bio/shell/plugin/codon.rb +218 -0
  20. data/lib/bio/shell/plugin/das.rb +58 -0
  21. data/lib/bio/shell/plugin/emboss.rb +23 -0
  22. data/lib/bio/shell/plugin/entry.rb +137 -0
  23. data/lib/bio/shell/plugin/flatfile.rb +101 -0
  24. data/lib/bio/shell/plugin/midi.rb +430 -0
  25. data/lib/bio/shell/plugin/ncbirest.rb +68 -0
  26. data/lib/bio/shell/plugin/obda.rb +45 -0
  27. data/lib/bio/shell/plugin/psort.rb +56 -0
  28. data/lib/bio/shell/plugin/seq.rb +248 -0
  29. data/lib/bio/shell/plugin/togows.rb +40 -0
  30. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/bioruby_generator.rb +29 -0
  31. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_classes.rhtml +4 -0
  32. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_log.rhtml +27 -0
  33. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_methods.rhtml +11 -0
  34. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_modules.rhtml +4 -0
  35. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_variables.rhtml +7 -0
  36. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-bg.gif +0 -0
  37. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-gem.png +0 -0
  38. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-link.gif +0 -0
  39. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.css +368 -0
  40. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.rhtml +47 -0
  41. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_controller.rb +144 -0
  42. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_helper.rb +47 -0
  43. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/commands.rhtml +8 -0
  44. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/history.rhtml +10 -0
  45. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/index.rhtml +26 -0
  46. data/lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/spinner.gif +0 -0
  47. data/lib/bio/shell/script.rb +25 -0
  48. data/lib/bio/shell/setup.rb +108 -0
  49. data/lib/bio/shell/version.rb +5 -0
  50. data/lib/bio/shell/web.rb +102 -0
  51. data/lib/bioruby.rb +34 -0
  52. metadata +165 -0
@@ -0,0 +1,34 @@
1
+ #
2
+ # = bioruby.rb - Loading all BioRuby modules and setup for shell programming
3
+ #
4
+ # Copyright:: Copyright (C) 2005
5
+ # Toshiaki Katayama <k@bioruby.org>
6
+ # License:: LGPL
7
+ #
8
+ # $Id: bioruby.rb,v 1.1 2005/12/07 05:12:06 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
+ require 'bio/shell'
30
+
31
+ include Bio::Shell
32
+
33
+ Bio::Shell.setup
34
+
metadata ADDED
@@ -0,0 +1,165 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bio-shell
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - BioRuby project
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-09-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bio
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 1.5.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 1.5.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.15'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.15'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rdoc
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '5'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '5'
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3'
83
+ description: BioRuby Shell is a command-line based interacitve analysis enviroment
84
+ for BioRuby open source bioinformatics library.
85
+ email:
86
+ - staff@bioruby.org
87
+ executables:
88
+ - bioruby
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - ".gitignore"
93
+ - BSDL
94
+ - COPYING
95
+ - COPYING.ja
96
+ - Gemfile
97
+ - LEGAL
98
+ - README.md
99
+ - Rakefile
100
+ - bin/bioruby
101
+ - bio-shell.gemspec
102
+ - lib/bio/shell.rb
103
+ - lib/bio/shell/core.rb
104
+ - lib/bio/shell/demo.rb
105
+ - lib/bio/shell/interface.rb
106
+ - lib/bio/shell/irb.rb
107
+ - lib/bio/shell/object.rb
108
+ - lib/bio/shell/plugin/blast.rb
109
+ - lib/bio/shell/plugin/codon.rb
110
+ - lib/bio/shell/plugin/das.rb
111
+ - lib/bio/shell/plugin/emboss.rb
112
+ - lib/bio/shell/plugin/entry.rb
113
+ - lib/bio/shell/plugin/flatfile.rb
114
+ - lib/bio/shell/plugin/midi.rb
115
+ - lib/bio/shell/plugin/ncbirest.rb
116
+ - lib/bio/shell/plugin/obda.rb
117
+ - lib/bio/shell/plugin/psort.rb
118
+ - lib/bio/shell/plugin/seq.rb
119
+ - lib/bio/shell/plugin/togows.rb
120
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/bioruby_generator.rb
121
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_classes.rhtml
122
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_log.rhtml
123
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_methods.rhtml
124
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_modules.rhtml
125
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/_variables.rhtml
126
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-bg.gif
127
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-gem.png
128
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby-link.gif
129
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.css
130
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby.rhtml
131
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_controller.rb
132
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/bioruby_helper.rb
133
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/commands.rhtml
134
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/history.rhtml
135
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/index.rhtml
136
+ - lib/bio/shell/rails/vendor/plugins/bioruby/generators/bioruby/templates/spinner.gif
137
+ - lib/bio/shell/script.rb
138
+ - lib/bio/shell/setup.rb
139
+ - lib/bio/shell/version.rb
140
+ - lib/bio/shell/web.rb
141
+ - lib/bioruby.rb
142
+ homepage: https://github.com/bioruby/bioruby-shell
143
+ licenses: []
144
+ metadata: {}
145
+ post_install_message:
146
+ rdoc_options: []
147
+ require_paths:
148
+ - lib
149
+ required_ruby_version: !ruby/object:Gem::Requirement
150
+ requirements:
151
+ - - ">="
152
+ - !ruby/object:Gem::Version
153
+ version: '0'
154
+ required_rubygems_version: !ruby/object:Gem::Requirement
155
+ requirements:
156
+ - - ">="
157
+ - !ruby/object:Gem::Version
158
+ version: '0'
159
+ requirements: []
160
+ rubyforge_project:
161
+ rubygems_version: 2.6.11
162
+ signing_key:
163
+ specification_version: 4
164
+ summary: 'BioRuby Shell: interactive analysis environment for BioRuby'
165
+ test_files: []