bio-biosql 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.
@@ -0,0 +1 @@
1
+ This is a dummy file to prevent removal of this directory.
@@ -0,0 +1,114 @@
1
+ # To change this template, choose Tools | Templates
2
+ # and open the template in the editor.
3
+
4
+ # loading helper routine for testing bioruby
5
+ require 'pathname'
6
+ load Pathname.new(File.join(File.dirname(__FILE__), ['..'] * 4,
7
+ 'bioruby_test_helper.rb')).cleanpath.to_s
8
+
9
+ # libraries needed for the tests
10
+ require 'test/unit'
11
+ require 'bio'
12
+
13
+ module Bio
14
+ class TestBiosqlIO < Test::Unit::TestCase
15
+ def setup
16
+ @connection = Bio::SQL.establish_connection({'development'=>{'hostname'=>'localhost','database'=>"bioseq", 'adapter'=>"jdbcmysql", 'username'=>"febo", 'password'=>nil}},'development')
17
+ @str_genbank=<<END
18
+ LOCUS X64011 756 bp DNA linear BCT 26-SEP-2006
19
+ DEFINITION Listeria ivanovii sod gene for superoxide dismutase.
20
+ ACCESSION X64011 S78972
21
+ VERSION X64011.1 GI:44010
22
+ KEYWORDS sod gene; superoxide dismutase.
23
+ SOURCE Listeria ivanovii
24
+ ORGANISM Listeria ivanovii
25
+ Bacteria; Firmicutes; Bacillales; Listeriaceae; Listeria.
26
+ REFERENCE 1
27
+ AUTHORS Haas,A. and Goebel,W.
28
+ TITLE Cloning of a superoxide dismutase gene from Listeria ivanovii by
29
+ functional complementation in Escherichia coli and characterization
30
+ of the gene product
31
+ JOURNAL Mol. Gen. Genet. 231 (2), 313-322 (1992)
32
+ PUBMED 1736100
33
+ REFERENCE 2 (bases 1 to 756)
34
+ AUTHORS Kreft,J.
35
+ TITLE Direct Submission
36
+ JOURNAL Submitted (21-APR-1992) J. Kreft, Institut f. Mikrobiologie,
37
+ Universitaet Wuerzburg, Biozentrum Am Hubland, 8700 Wuerzburg, FRG
38
+ COMMENT On Jun 23, 2005 this sequence version replaced gi:244394.
39
+ FEATURES Location/Qualifiers
40
+ source 1..756
41
+ /organism="Listeria ivanovii"
42
+ /mol_type="genomic DNA"
43
+ /strain="ATCC 19119"
44
+ /db_xref="taxon:1638"
45
+ gene 95..746
46
+ /gene="sod"
47
+ RBS 95..100
48
+ /gene="sod"
49
+ CDS 109..717
50
+ /gene="sod"
51
+ /EC_number="1.15.1.1"
52
+ /codon_start=1
53
+ /transl_table=11
54
+ /product="superoxide dismutase"
55
+ /protein_id="CAA45406.1"
56
+ /db_xref="GI:44011"
57
+ /db_xref="GOA:P28763"
58
+ /db_xref="InterPro:IPR001189"
59
+ /db_xref="UniProtKB/Swiss-Prot:P28763"
60
+ /translation="MTYELPKLPYTYDALEPNFDKETMEIHYTKHHNIYVTKLNEAVS
61
+ GHAELASKPGEELVANLDSVPEEIRGAVRNHGGGHANHTLFWSSLSPNGGGAPTGNLK
62
+ AAIESEFGTFDEFKEKFNAAAAARFGSGWAWLVVNNGKLEIVSTANQDSPLSEGKTPV
63
+ LGLDVWEHAYYLKFQNRRPEYIDTFWNVINWDERNKRFDAAK"
64
+ terminator 723..746
65
+ /gene="sod"
66
+ ORIGIN
67
+ 1 cgttatttaa ggtgttacat agttctatgg aaatagggtc tatacctttc gccttacaat
68
+ 61 gtaatttctt ttcacataaa taataaacaa tccgaggagg aatttttaat gacttacgaa
69
+ 121 ttaccaaaat taccttatac ttatgatgct ttggagccga attttgataa agaaacaatg
70
+ 181 gaaattcact atacaaagca ccacaatatt tatgtaacaa aactaaatga agcagtctca
71
+ 241 ggacacgcag aacttgcaag taaacctggg gaagaattag ttgctaatct agatagcgtt
72
+ 301 cctgaagaaa ttcgtggcgc agtacgtaac cacggtggtg gacatgctaa ccatacttta
73
+ 361 ttctggtcta gtcttagccc aaatggtggt ggtgctccaa ctggtaactt aaaagcagca
74
+ 421 atcgaaagcg aattcggcac atttgatgaa ttcaaagaaa aattcaatgc ggcagctgcg
75
+ 481 gctcgttttg gttcaggatg ggcatggcta gtagtgaaca atggtaaact agaaattgtt
76
+ 541 tccactgcta accaagattc tccacttagc gaaggtaaaa ctccagttct tggcttagat
77
+ 601 gtttgggaac atgcttatta tcttaaattc caaaaccgtc gtcctgaata cattgacaca
78
+ 661 ttttggaatg taattaactg ggatgaacga aataaacgct ttgacgcagc aaaataatta
79
+ 721 tcgaaaggct cacttaggtg ggtcttttta tttcta
80
+ //
81
+ END
82
+ end
83
+
84
+ def test_00_connection
85
+ assert_instance_of(ActiveRecord::ConnectionAdapters::ConnectionPool, @connection)
86
+ end
87
+
88
+ def test_01_input_is_genbank
89
+ assert_instance_of(Bio::GenBank,Bio::GenBank.new(@str_genbank))
90
+ end
91
+
92
+ def test_02_insert_bioentry
93
+ @@x = Bio::SQL::Sequence.new(:biosequence=>Bio::GenBank.new(@str_genbank).to_biosequence, :biodatabase=>Bio::SQL::Biodatabase.find(:first))
94
+ assert_not_nil(@@x)
95
+ end
96
+
97
+ def test_03_input_output
98
+ bioseq = Bio::SQL.fetch_accession("X64011")
99
+ assert_not_nil bioseq
100
+ assert_equal(@str_genbank, bioseq.to_biosequence.output(:genbank))
101
+ end
102
+
103
+ def test_04_bioentry_data_format
104
+ assert_equal('26-SEP-2006', @@x.date_modified.to_s)
105
+ end
106
+
107
+ def test_05_title
108
+ assert_equal('Cloning of a superoxide dismutase gene from Listeria ivanovii by functional complementation in Escherichia coli and characterization of the gene product',@@x.references.first.title)
109
+ end
110
+ def test_99_delete_bioentry
111
+ assert_not_nil(@@x.delete)
112
+ end
113
+ end
114
+ end
@@ -0,0 +1,8 @@
1
+ # To change this template, choose Tools | Templates
2
+ # and open the template in the editor.
3
+ $:.unshift File.dirname(__FILE__)
4
+
5
+ require 'test/unit'
6
+
7
+ # Add your testcases here
8
+ require 'tc_biosql'
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bio-biosql
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: 2016-06-17 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.0
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.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: activerecord
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 3.0.10
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 3.0.10
41
+ - !ruby/object:Gem::Dependency
42
+ name: composite_primary_keys
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 3.1.10
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 3.1.10
55
+ - !ruby/object:Gem::Dependency
56
+ name: bundler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '1.7'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '1.7'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '10.0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '10.0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rdoc
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '4'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '4'
97
+ - !ruby/object:Gem::Dependency
98
+ name: test-unit
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: '3'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: '3'
111
+ description: Provides BioSQL support for BioRuby.
112
+ email:
113
+ - staff@bioruby.org
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files:
117
+ - README.md
118
+ - COPYING
119
+ - COPYING.ja
120
+ - BSDL
121
+ files:
122
+ - ".gitignore"
123
+ - ".project"
124
+ - BSDL
125
+ - COPYING
126
+ - COPYING.ja
127
+ - Gemfile
128
+ - LEGAL
129
+ - README.md
130
+ - Rakefile
131
+ - bio-biosql.gemspec
132
+ - lib/bio-biosql/version.rb
133
+ - lib/bio/db/biosql/biosql_to_biosequence.rb
134
+ - lib/bio/db/biosql/sequence.rb
135
+ - lib/bio/io/biosql/ar-biosql.rb
136
+ - lib/bio/io/biosql/biosql.rb
137
+ - lib/bio/io/biosql/config/database.yml
138
+ - lib/bio/io/sql.rb
139
+ - test/bioruby_test_helper.rb
140
+ - test/data/00dummy.txt
141
+ - test/unit/bio/db/biosql/tc_biosql.rb
142
+ - test/unit/bio/db/biosql/ts_suite_biosql.rb
143
+ homepage: http://github.com/bioruby/bioruby-biosql
144
+ licenses:
145
+ - Ruby
146
+ metadata: {}
147
+ post_install_message:
148
+ rdoc_options:
149
+ - "--main"
150
+ - README.md
151
+ - "--title"
152
+ - Bio::SQL API documentation
153
+ - "--line-numbers"
154
+ require_paths:
155
+ - lib
156
+ required_ruby_version: !ruby/object:Gem::Requirement
157
+ requirements:
158
+ - - ">="
159
+ - !ruby/object:Gem::Version
160
+ version: '0'
161
+ required_rubygems_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ requirements: []
167
+ rubyforge_project:
168
+ rubygems_version: 2.4.5.1
169
+ signing_key:
170
+ specification_version: 4
171
+ summary: BioSQL plugin for BioRuby
172
+ test_files:
173
+ - test/bioruby_test_helper.rb
174
+ - test/data/00dummy.txt
175
+ - test/unit/bio/db/biosql/tc_biosql.rb
176
+ - test/unit/bio/db/biosql/ts_suite_biosql.rb