simple_bioc 0.0.11 → 0.0.12
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.
- checksums.yaml +4 -4
- data/lib/simple_bioc/bioc_merger.rb +2 -37
- data/lib/simple_bioc/bioc_reader.rb +2 -0
- data/lib/simple_bioc/location_adjuster.rb +39 -0
- data/lib/simple_bioc/passage.rb +2 -0
- data/lib/simple_bioc/sentence.rb +2 -0
- data/lib/simple_bioc/version.rb +1 -1
- data/spec/file_check_spec.rb +10 -2
- data/xml/10330397_gene.xml +1 -0
- data/xml/10330397_ppimention.xml +1442 -0
- data/xml/merge/10366597_error.xml +3 -0
- data/xml/merge/output_10330397.xml +6447 -0
- data/xml/merge/output_10366597.xml +1360 -0
- metadata +8 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_bioc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dongseop Kwon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-01-
|
11
|
+
date: 2016-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
@@ -191,6 +191,7 @@ files:
|
|
191
191
|
- lib/simple_bioc/collection.rb
|
192
192
|
- lib/simple_bioc/document.rb
|
193
193
|
- lib/simple_bioc/location.rb
|
194
|
+
- lib/simple_bioc/location_adjuster.rb
|
194
195
|
- lib/simple_bioc/node.rb
|
195
196
|
- lib/simple_bioc/node_base.rb
|
196
197
|
- lib/simple_bioc/passage.rb
|
@@ -202,6 +203,8 @@ files:
|
|
202
203
|
- simple_bioc.gemspec
|
203
204
|
- spec/file_check_spec.rb
|
204
205
|
- spec/simple_bioc_spec.rb
|
206
|
+
- xml/10330397_gene.xml
|
207
|
+
- xml/10330397_ppimention.xml
|
205
208
|
- xml/353.xml
|
206
209
|
- xml/9864355.xml
|
207
210
|
- xml/9864355_1.xml
|
@@ -220,11 +223,14 @@ files:
|
|
220
223
|
- xml/everything.xml
|
221
224
|
- xml/lemma.key
|
222
225
|
- xml/lemma.xml
|
226
|
+
- xml/merge/10366597_error.xml
|
223
227
|
- xml/merge/9864355.xml
|
224
228
|
- xml/merge/9864355_1.xml
|
225
229
|
- xml/merge/9864355_2.xml
|
226
230
|
- xml/merge/9864355_3.xml
|
227
231
|
- xml/merge/output.xml
|
232
|
+
- xml/merge/output_10330397.xml
|
233
|
+
- xml/merge/output_10366597.xml
|
228
234
|
- xml/output.xml
|
229
235
|
- xml/pos.key
|
230
236
|
- xml/pos.xml
|