simple_bioc 0.0.5 → 0.0.6
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/.gitignore +13 -0
- data/html/BioCMerger.html +748 -0
- data/html/BioCReader.html +138 -146
- data/html/BioCWriter.html +84 -131
- data/html/README_md.html +79 -100
- data/html/SimpleBioC/Annotation.html +70 -113
- data/html/SimpleBioC/Collection.html +70 -113
- data/html/SimpleBioC/Document.html +76 -119
- data/html/SimpleBioC/Location.html +70 -113
- data/html/SimpleBioC/Node.html +72 -115
- data/html/SimpleBioC/NodeBase.html +63 -108
- data/html/SimpleBioC/Passage.html +74 -117
- data/html/SimpleBioC/Relation.html +85 -115
- data/html/SimpleBioC/Sentence.html +74 -117
- data/html/SimpleBioC.html +221 -129
- data/html/created.rid +16 -15
- data/html/css/fonts.css +167 -0
- data/html/css/rdoc.css +590 -0
- data/html/fonts/Lato-Light.ttf +0 -0
- data/html/fonts/Lato-LightItalic.ttf +0 -0
- data/html/fonts/Lato-Regular.ttf +0 -0
- data/html/fonts/Lato-RegularItalic.ttf +0 -0
- data/html/fonts/SourceCodePro-Bold.ttf +0 -0
- data/html/fonts/SourceCodePro-Regular.ttf +0 -0
- data/html/index.html +71 -53
- data/html/js/darkfish.js +32 -26
- data/html/js/jquery.js +4 -18
- data/html/js/navigation.js.gz +0 -0
- data/html/js/search.js +20 -5
- data/html/js/search_index.js +1 -1
- data/html/js/search_index.js.gz +0 -0
- data/html/js/searcher.js.gz +0 -0
- data/html/table_of_contents.html +379 -136
- data/lib/simple_bioc/bioc_merger.rb +209 -0
- data/lib/simple_bioc/relation.rb +1 -1
- data/lib/simple_bioc/version.rb +1 -1
- data/lib/simple_bioc.rb +8 -4
- data/spec/file_check_spec.rb +14 -1
- data/xml/PMC2133144.xml +3 -0
- data/xml/merge/9864355.xml +1 -0
- data/xml/merge/9864355_1.xml +1 -0
- data/xml/merge/9864355_2.xml +1974 -0
- data/xml/merge/9864355_3.xml +1 -0
- data/xml/merge/output.xml +6742 -0
- metadata +21 -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.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dongseop Kwon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-12-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -123,6 +123,7 @@ files:
|
|
|
123
123
|
- LICENSE.txt
|
|
124
124
|
- README.md
|
|
125
125
|
- Rakefile
|
|
126
|
+
- html/BioCMerger.html
|
|
126
127
|
- html/BioCReader.html
|
|
127
128
|
- html/BioCWriter.html
|
|
128
129
|
- html/README_md.html
|
|
@@ -137,6 +138,14 @@ files:
|
|
|
137
138
|
- html/SimpleBioC/Relation.html
|
|
138
139
|
- html/SimpleBioC/Sentence.html
|
|
139
140
|
- html/created.rid
|
|
141
|
+
- html/css/fonts.css
|
|
142
|
+
- html/css/rdoc.css
|
|
143
|
+
- html/fonts/Lato-Light.ttf
|
|
144
|
+
- html/fonts/Lato-LightItalic.ttf
|
|
145
|
+
- html/fonts/Lato-Regular.ttf
|
|
146
|
+
- html/fonts/Lato-RegularItalic.ttf
|
|
147
|
+
- html/fonts/SourceCodePro-Bold.ttf
|
|
148
|
+
- html/fonts/SourceCodePro-Regular.ttf
|
|
140
149
|
- html/images/add.png
|
|
141
150
|
- html/images/arrow_up.png
|
|
142
151
|
- html/images/brick.png
|
|
@@ -166,13 +175,17 @@ files:
|
|
|
166
175
|
- html/js/darkfish.js
|
|
167
176
|
- html/js/jquery.js
|
|
168
177
|
- html/js/navigation.js
|
|
178
|
+
- html/js/navigation.js.gz
|
|
169
179
|
- html/js/search.js
|
|
170
180
|
- html/js/search_index.js
|
|
181
|
+
- html/js/search_index.js.gz
|
|
171
182
|
- html/js/searcher.js
|
|
183
|
+
- html/js/searcher.js.gz
|
|
172
184
|
- html/rdoc.css
|
|
173
185
|
- html/table_of_contents.html
|
|
174
186
|
- lib/simple_bioc.rb
|
|
175
187
|
- lib/simple_bioc/annotation.rb
|
|
188
|
+
- lib/simple_bioc/bioc_merger.rb
|
|
176
189
|
- lib/simple_bioc/bioc_reader.rb
|
|
177
190
|
- lib/simple_bioc/bioc_writer.rb
|
|
178
191
|
- lib/simple_bioc/collection.rb
|
|
@@ -190,6 +203,7 @@ files:
|
|
|
190
203
|
- spec/file_check_spec.rb
|
|
191
204
|
- spec/simple_bioc_spec.rb
|
|
192
205
|
- xml/BioC.dtd
|
|
206
|
+
- xml/PMC2133144.xml
|
|
193
207
|
- xml/PMID-8557975-simplified-sentences-tokens.xml
|
|
194
208
|
- xml/PMID-8557975-simplified-sentences.xml
|
|
195
209
|
- xml/abbr.key
|
|
@@ -201,6 +215,11 @@ files:
|
|
|
201
215
|
- xml/everything.xml
|
|
202
216
|
- xml/lemma.key
|
|
203
217
|
- xml/lemma.xml
|
|
218
|
+
- xml/merge/9864355.xml
|
|
219
|
+
- xml/merge/9864355_1.xml
|
|
220
|
+
- xml/merge/9864355_2.xml
|
|
221
|
+
- xml/merge/9864355_3.xml
|
|
222
|
+
- xml/merge/output.xml
|
|
204
223
|
- xml/pos.key
|
|
205
224
|
- xml/pos.xml
|
|
206
225
|
- xml/sentence.key
|