blob: 2b4d1c6664818878e232a8e14a487331f7efa434 [file] [log] [blame]
Akronc13a1702016-03-15 19:33:14 +01001=pod
2
3=encoding utf8
4
5=head1 NAME
6
Akron42f48c12020-02-14 13:08:13 +01007korapxml2krill - Merge KorAP-XML data and create Krill documents
Akronc13a1702016-03-15 19:33:14 +01008
9
10=head1 SYNOPSIS
11
Akron5c71a852016-10-31 16:00:33 +010012 korapxml2krill [archive|extract] --input <directory|archive> [options]
Akron2fd402b2016-10-27 21:26:48 +020013
Akronc13a1702016-03-15 19:33:14 +010014
15=head1 DESCRIPTION
16
Akron5c71a852016-10-31 16:00:33 +010017L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files
18compatible with the L<Krill|https://github.com/KorAP/Krill> indexer.
Akron8f69d632020-01-15 16:58:11 +010019The C<korapxml2krill> command line tool is a simple wrapper of this library.
Akronc13a1702016-03-15 19:33:14 +010020
21
Akron5c71a852016-10-31 16:00:33 +010022=head1 INSTALLATION
Akronc13a1702016-03-15 19:33:14 +010023
Akron5c71a852016-10-31 16:00:33 +010024The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>.
Akronc13a1702016-03-15 19:33:14 +010025
Akron5c71a852016-10-31 16:00:33 +010026 $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git
Akronc13a1702016-03-15 19:33:14 +010027
Akron5c71a852016-10-31 16:00:33 +010028In case everything went well, the C<korapxml2krill> tool will
29be available on your command line immediately.
Akron6eff23b2018-09-24 10:31:20 +020030Minimum requirement for L<KorAP::XML::Krill> is Perl 5.16.
Akroneb370a02022-02-24 13:33:40 +010031Optionally installing L<Archive::Tar::Builder> speeds up archive building.
32Optional support for L<Sys::Info> to calculate available cores is available.
Akron5c71a852016-10-31 16:00:33 +010033In addition to work with zip archives, the C<unzip> tool needs to be present.
Akronc13a1702016-03-15 19:33:14 +010034
Akron5c71a852016-10-31 16:00:33 +010035=head1 ARGUMENTS
Akronc13a1702016-03-15 19:33:14 +010036
Akron5c71a852016-10-31 16:00:33 +010037 $ korapxml2krill -z --input <directory> --output <filename>
38
39Without arguments, C<korapxml2krill> converts a directory of a single KorAP-XML document.
40It expects the input to point to the text level folder.
41
42=over 2
43
44=item B<archive>
45
Akronf73ffb62018-06-27 12:13:59 +020046 $ korapxml2krill archive -z --input <directory|archive> --output <directory|tar>
Akron5c71a852016-10-31 16:00:33 +010047
48Converts an archive of KorAP-XML documents. It expects a directory
49(pointing to the corpus level folder) or one or more zip files as input.
50
51=item B<extract>
52
53 $ korapxml2krill extract --input <archive> --output <directory> --sigle <SIGLE>
54
55Extracts KorAP-XML documents from a zip file.
56
Akron442c4e92017-04-10 23:41:31 +020057=item B<serial>
58
59 $ korapxml2krill serial -i <archive1> -i <archive2> -o <directory> -cfg <config-file>
60
61Convert archives sequentially. The inputs are not merged but treated
62as they are (so they may be premerged or globs).
63the C<--out> directory is treated as the base directory where subdirectories
Akronf73ffb62018-06-27 12:13:59 +020064are created based on the archive name. In case the C<--to-tar> flag is given,
65the output will be a tar file.
Akron442c4e92017-04-10 23:41:31 +020066
67
Akron9f37ed72022-01-17 12:10:08 +010068=item B<slimlog>
69
70 $ korapxml2krill slimlog <logfile> > <logfile-slim>
71
72Filters out all useless aka succesfull information from logs, to simplify
73log checks. Expects no further options.
74
75
Akron5c71a852016-10-31 16:00:33 +010076=back
Akrona76d8352016-10-27 16:27:32 +020077
Akron7606afa2016-10-25 16:23:49 +020078
Akron5c71a852016-10-31 16:00:33 +010079=head1 OPTIONS
Akronc13a1702016-03-15 19:33:14 +010080
Akron5c71a852016-10-31 16:00:33 +010081=over 2
Akronc13a1702016-03-15 19:33:14 +010082
Akron5c71a852016-10-31 16:00:33 +010083=item B<--input|-i> <directory|zip file>
Akrona76d8352016-10-27 16:27:32 +020084
Akron5c71a852016-10-31 16:00:33 +010085Directory or zip file(s) of documents to convert.
Akronc13a1702016-03-15 19:33:14 +010086
Akron5c71a852016-10-31 16:00:33 +010087Without arguments, C<korapxml2krill> expects a folder of a single KorAP-XML
Akronf1a1de92016-11-02 17:32:12 +010088document, while C<archive> expects a KorAP-XML corpus folder or a zip
89file to batch process multiple files.
90C<extract> expects zip files only.
Akronc13a1702016-03-15 19:33:14 +010091
Akron5c71a852016-10-31 16:00:33 +010092C<archive> supports multiple input zip files with the constraint,
93that the first archive listed contains all primary data files
94and all meta data files.
Akrona76d8352016-10-27 16:27:32 +020095
Akron5c71a852016-10-31 16:00:33 +010096 -i file/news.zip -i file/news.malt.zip -i "#file/news.tt.zip"
Akronc13a1702016-03-15 19:33:14 +010097
Akron821db3d2017-04-06 21:19:31 +020098Input may also be defined using BSD glob wildcards.
99
100 -i 'file/news*.zip'
101
102The extended input array will be sorted in length order, so the shortest
103path needs to contain all primary data files and all meta data files.
104
Akron5c71a852016-10-31 16:00:33 +0100105(The directory structure follows the base directory format,
106that may include a C<.> root folder.
107In this case further archives lacking a C<.> root folder
108need to be passed with a hash sign in front of the archive's name.
109This may require to quote the parameter.)
Akronc13a1702016-03-15 19:33:14 +0100110
Akron5c71a852016-10-31 16:00:33 +0100111To support zip files, a version of C<unzip> needs to be installed that is
112compatible with the archive file.
Akronc13a1702016-03-15 19:33:14 +0100113
Akron5c71a852016-10-31 16:00:33 +0100114B<The root folder switch using the hash sign is experimental and
115may vanish in future versions.>
Akronc13a1702016-03-15 19:33:14 +0100116
Akronf73ffb62018-06-27 12:13:59 +0200117
Akron442c4e92017-04-10 23:41:31 +0200118=item B<--input-base|-ib> <directory>
119
120The base directory for inputs.
121
122
Akron5c71a852016-10-31 16:00:33 +0100123=item B<--output|-o> <directory|file>
Akronc13a1702016-03-15 19:33:14 +0100124
Akron5c71a852016-10-31 16:00:33 +0100125Output folder for archive processing or
126document name for single output (optional),
127writes to C<STDOUT> by default
128(in case C<output> is not mandatory due to further options).
Akronc13a1702016-03-15 19:33:14 +0100129
Akron5c71a852016-10-31 16:00:33 +0100130=item B<--overwrite|-w>
Akronc13a1702016-03-15 19:33:14 +0100131
Akron5c71a852016-10-31 16:00:33 +0100132Overwrite files that already exist.
Akron7606afa2016-10-25 16:23:49 +0200133
Akronf73ffb62018-06-27 12:13:59 +0200134
Akron3741f8b2016-12-21 19:55:21 +0100135=item B<--token|-t> <foundry>#<file>
Akrona5920b12016-06-29 18:51:21 +0200136
Akron5c71a852016-10-31 16:00:33 +0100137Define the default tokenization by specifying
138the name of the foundry and optionally the name
139of the layer-file. Defaults to C<OpenNLP#tokens>.
Akronf1849aa2019-12-16 23:35:33 +0100140This will directly take the file instead of running
141the layer implementation!
Akron3741f8b2016-12-21 19:55:21 +0100142
Akron8f69d632020-01-15 16:58:11 +0100143
Akron3741f8b2016-12-21 19:55:21 +0100144=item B<--base-sentences|-bs> <foundry>#<layer>
145
146Define the layer for base sentences.
147If given, this will be used instead of using C<Base#Sentences>.
Akronc29b8e12019-12-16 14:28:09 +0100148Currently C<DeReKo#Structure> and C<DGD#Structure> are the only additional
149layers supported.
Akron3741f8b2016-12-21 19:55:21 +0100150
151 Defaults to unset.
152
153
154=item B<--base-paragraphs|-bp> <foundry>#<layer>
155
156Define the layer for base paragraphs.
157If given, this will be used instead of using C<Base#Paragraphs>.
Akron9f37ed72022-01-17 12:10:08 +0100158Currently C<DeReKo#Structure> and C<DGD#Structure> are the only additional
159layer supported.
Akron3741f8b2016-12-21 19:55:21 +0100160
161 Defaults to unset.
162
163
Akron821db3d2017-04-06 21:19:31 +0200164=item B<--base-pagebreaks|-bpb> <foundry>#<layer>
165
166Define the layer for base pagebreaks.
167Currently C<DeReKo#Structure> is the only layer supported.
168
169 Defaults to unset.
170
171
Akron5c71a852016-10-31 16:00:33 +0100172=item B<--skip|-s> <foundry>[#<layer>]
173
174Skip specific annotations by specifying the foundry
175(and optionally the layer with a C<#>-prefix),
176e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>.
177Can be set multiple times.
178
Akronf73ffb62018-06-27 12:13:59 +0200179
Akron5c71a852016-10-31 16:00:33 +0100180=item B<--anno|-a> <foundry>#<layer>
181
182Convert specific annotations by specifying the foundry
183(and optionally the layer with a C<#>-prefix),
184e.g. C<Mate> or C<Mate#Morpho>.
185Can be set multiple times.
186
Akronf73ffb62018-06-27 12:13:59 +0200187
Akroned9baf02019-01-22 17:03:25 +0100188=item B<--non-word-tokens|-nwt>
189
190Tokenize non-word tokens like word tokens (defined as matching
191C</[\d\w]/>). Useful to treat punctuations as tokens.
192
193 Defaults to unset.
194
Akronf1849aa2019-12-16 23:35:33 +0100195
196=item B<--non-verbal-tokens|-nvt>
197
198Tokenize non-verbal tokens marked as in the primary data as
199the unicode symbol 'Black Vertical Rectangle' aka \x25ae.
200
201 Defaults to unset.
202
203
Akron5c71a852016-10-31 16:00:33 +0100204=item B<--jobs|-j>
205
206Define the number of concurrent jobs in seperated forks
207for archive processing.
208Defaults to C<0> (everything runs in a single process).
Akronf73ffb62018-06-27 12:13:59 +0200209
210If C<sequential-extraction> is not set to false, this will
211also apply to extraction.
212
Akron821db3d2017-04-06 21:19:31 +0200213Pass -1, and the value will be set automatically to 5
Akron0b04b312020-10-30 17:39:18 +0100214times the number of available cores, in case L<Sys::Info>
215is available.
Akron5c71a852016-10-31 16:00:33 +0100216This is I<experimental>.
217
Akronf73ffb62018-06-27 12:13:59 +0200218
Akron263274c2019-02-07 09:48:30 +0100219=item B<--koral|-k>
220
221Version of the output format. Supported versions are:
222C<0> for legacy serialization, C<0.03> for serialization
223with metadata fields as key-values on the root object,
224C<0.4> for serialization with metadata fields as a list
225of C<"@type":"koral:field"> objects.
226
227Currently defaults to C<0.03>.
228
229
Akronf73ffb62018-06-27 12:13:59 +0200230=item B<--sequential-extraction|-se>
231
232Flag to indicate, if the C<jobs> value also applies to extraction.
233Some systems may have problems with extracting multiple archives
234to the same folder at the same time.
235Can be flagged using C<--no-sequential-extraction> as well.
236Defaults to C<false>.
237
238
Akron5c71a852016-10-31 16:00:33 +0100239=item B<--meta|-m>
240
241Define the metadata parser to use. Defaults to C<I5>.
242Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace.
243This is I<experimental>.
244
Akronf73ffb62018-06-27 12:13:59 +0200245
Akron5c71a852016-10-31 16:00:33 +0100246=item B<--gzip|-z>
247
248Compress the output.
249Expects a defined C<output> file in single processing.
250
Akronf73ffb62018-06-27 12:13:59 +0200251
Akron5c71a852016-10-31 16:00:33 +0100252=item B<--cache|-c>
253
254File to mmap a cache (using L<Cache::FastMmap>).
255Defaults to C<korapxml2krill.cache> in the calling directory.
256
Akronf73ffb62018-06-27 12:13:59 +0200257
Akron5c71a852016-10-31 16:00:33 +0100258=item B<--cache-size|-cs>
259
260Size of the cache. Defaults to C<50m>.
261
Akronf73ffb62018-06-27 12:13:59 +0200262
Akron5c71a852016-10-31 16:00:33 +0100263=item B<--cache-init|-ci>
264
265Initialize cache file.
266Can be flagged using C<--no-cache-init> as well.
267Defaults to C<true>.
268
Akronf73ffb62018-06-27 12:13:59 +0200269
Akron5c71a852016-10-31 16:00:33 +0100270=item B<--cache-delete|-cd>
271
272Delete cache file after processing.
273Can be flagged using C<--no-cache-delete> as well.
274Defaults to C<true>.
275
Akronf73ffb62018-06-27 12:13:59 +0200276
Akron636aa112017-04-07 18:48:56 +0200277=item B<--config|-cfg>
278
279Configure the parameters of your call in a file
280of key-value pairs with whitespace separator
281
282 overwrite 1
283 token DeReKo#Structure
284 ...
285
286Supported parameters are:
Akron442c4e92017-04-10 23:41:31 +0200287C<overwrite>, C<gzip>, C<jobs>, C<input-base>,
Akron636aa112017-04-07 18:48:56 +0200288C<token>, C<log>, C<cache>, C<cache-size>, C<cache-delete>, C<meta>,
Akron57510c12019-01-04 14:58:53 +0100289C<output>, C<koral>,
Akron9a2545e2022-01-16 15:15:50 +0100290C<temporary-extract>, C<sequential-extraction>,
Akronf73ffb62018-06-27 12:13:59 +0200291C<base-sentences>, C<base-paragraphs>,
292C<base-pagebreaks>,
293C<skip> (semicolon separated), C<sigle>
Akron636aa112017-04-07 18:48:56 +0200294(semicolon separated), C<anno> (semicolon separated).
295
Akronf73ffb62018-06-27 12:13:59 +0200296Configuration parameters will always be overwritten by
297passed parameters.
298
299
Akron81500102017-04-07 20:45:44 +0200300=item B<--temporary-extract|-te>
301
302Only valid for the C<archive> command.
303
304This will first extract all files into a
305directory and then will archive.
306If the directory is given as C<:temp:>,
307a temporary directory is used.
308This is especially useful to avoid
309massive unzipping and potential
310network latency.
Akron636aa112017-04-07 18:48:56 +0200311
Akronf73ffb62018-06-27 12:13:59 +0200312
Akronc93a0802019-07-11 15:48:34 +0200313=item B<--to-tar>
314
315Only valid for the C<archive> command.
316
317Writes the output into a tar archive.
318
319
Akron5c71a852016-10-31 16:00:33 +0100320=item B<--sigle|-sg>
321
322Extract the given texts.
323Can be set multiple times.
324I<Currently only supported on C<extract>.>
325Sigles have the structure C<Corpus>/C<Document>/C<Text>.
326In case the C<Text> path is omitted, the whole document will be extracted.
327On the document level, the postfix wildcard C<*> is supported.
328
Akron55fc2122022-07-27 13:24:39 +0200329=item B<--lang>
330
331Preferred language for metadata fields. In case multiple titles are
332given (on any level) with different C<xml:lang> attributes,
333the language given is preferred.
334Because titles may have different sources and different priorities,
335non-specific language titles may still be preferred in case the title
336source has a higher priority.
337
Akronf73ffb62018-06-27 12:13:59 +0200338
Akron5c71a852016-10-31 16:00:33 +0100339=item B<--log|-l>
340
Akron6882d7d2021-02-08 09:43:57 +0100341The L<Log::Any> log level, defaults to C<ERROR>.
Akron5c71a852016-10-31 16:00:33 +0100342
Akronf73ffb62018-06-27 12:13:59 +0200343
Akron5c71a852016-10-31 16:00:33 +0100344=item B<--help|-h>
345
Akron42f48c12020-02-14 13:08:13 +0100346Print help information.
Akron5c71a852016-10-31 16:00:33 +0100347
Akronf73ffb62018-06-27 12:13:59 +0200348
Akron5c71a852016-10-31 16:00:33 +0100349=item B<--version|-v>
350
351Print version information.
352
353=back
354
Akronf73ffb62018-06-27 12:13:59 +0200355
Akron5c71a852016-10-31 16:00:33 +0100356=head1 ANNOTATION SUPPORT
357
358L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers
359developed in the KorAP project that are part of the KorAP preprocessing pipeline.
360The base foundry with paragraphs, sentences, and the text element are mandatory for
361L<Krill|https://github.com/KorAP/Krill>.
362
Akron821db3d2017-04-06 21:19:31 +0200363 Base
364 #Paragraphs
365 #Sentences
Akron5c71a852016-10-31 16:00:33 +0100366
Akron821db3d2017-04-06 21:19:31 +0200367 Connexor
368 #Morpho
369 #Phrase
370 #Sentences
371 #Syntax
Akron5c71a852016-10-31 16:00:33 +0100372
Akron821db3d2017-04-06 21:19:31 +0200373 CoreNLP
374 #Constituency
375 #Morpho
376 #NamedEntities
377 #Sentences
Akron5c71a852016-10-31 16:00:33 +0100378
Akronf73ffb62018-06-27 12:13:59 +0200379 CMC
380 #Morpho
381
Akron821db3d2017-04-06 21:19:31 +0200382 DeReKo
383 #Structure
Akron5c71a852016-10-31 16:00:33 +0100384
Akron57510c12019-01-04 14:58:53 +0100385 DGD
386 #Morpho
Akronc29b8e12019-12-16 14:28:09 +0100387 #Structure
Akron57510c12019-01-04 14:58:53 +0100388
Akron821db3d2017-04-06 21:19:31 +0200389 DRuKoLa
390 #Morpho
Akron5c71a852016-10-31 16:00:33 +0100391
Akron9f37ed72022-01-17 12:10:08 +0100392 Glemm
Akronabb36902021-10-11 15:51:06 +0200393 #Morpho
394
Akron9f37ed72022-01-17 12:10:08 +0100395 Gingko
Akron821db3d2017-04-06 21:19:31 +0200396 #Morpho
Akron5c71a852016-10-31 16:00:33 +0100397
Akroned9baf02019-01-22 17:03:25 +0100398 HNC
399 #Morpho
400
Akronf73ffb62018-06-27 12:13:59 +0200401 LWC
402 #Dependency
403
Akron821db3d2017-04-06 21:19:31 +0200404 Malt
405 #Dependency
Akron5c71a852016-10-31 16:00:33 +0100406
Akron821db3d2017-04-06 21:19:31 +0200407 MarMoT
408 #Morpho
Akron5c71a852016-10-31 16:00:33 +0100409
Akron821db3d2017-04-06 21:19:31 +0200410 Mate
411 #Dependency
412 #Morpho
Akron5c71a852016-10-31 16:00:33 +0100413
Akron821db3d2017-04-06 21:19:31 +0200414 MDParser
415 #Dependency
Akron5c71a852016-10-31 16:00:33 +0100416
Akrone85a7762022-07-22 08:05:03 +0200417 NKJP
418 #Morpho
419 #NamedEntities
420
Akron821db3d2017-04-06 21:19:31 +0200421 OpenNLP
422 #Morpho
423 #Sentences
Akron5c71a852016-10-31 16:00:33 +0100424
Akron0b04b312020-10-30 17:39:18 +0100425 RWK
426 #Morpho
427 #Structure
428
Akron821db3d2017-04-06 21:19:31 +0200429 Sgbr
430 #Lemma
431 #Morpho
Akron5c71a852016-10-31 16:00:33 +0100432
Akron7d5e6382019-08-08 16:36:27 +0200433 Talismane
434 #Dependency
435 #Morpho
436
Akron821db3d2017-04-06 21:19:31 +0200437 TreeTagger
438 #Morpho
439 #Sentences
Akron5c71a852016-10-31 16:00:33 +0100440
Akron83aedd32023-02-07 10:57:41 +0100441 UDPipe
442 #Dependency
443 #Morpho
444
Akron821db3d2017-04-06 21:19:31 +0200445 XIP
446 #Constituency
447 #Morpho
448 #Sentences
Akron5c71a852016-10-31 16:00:33 +0100449
Akron5c71a852016-10-31 16:00:33 +0100450
451More importers are in preparation.
452New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace.
453See the built-in annotation importers as examples.
Akronc13a1702016-03-15 19:33:14 +0100454
Akronf73ffb62018-06-27 12:13:59 +0200455
Akron41e6c8b2021-10-14 20:22:18 +0200456=head1 METADATA SUPPORT
457
458L<KorAP::XML::Krill> has built-in importer for some meta data variants
459developed in the KorAP project that are part of the KorAP preprocessing pipeline.
460
461=over 2
462
463=item I5 - Meta data for all I5 files
464
465=item Sgbr - Meta data from the Schreibgebrauch project
466
467=item Gingko - Meta data from the Gingko project in addition to I5
468
469=back
470
471More importers are in preparation.
472New meta data importers can be defined in the C<KorAP::XML::Meta> namespace.
473See the built-in meta data importers as examples.
474
475
Akron8f69d632020-01-15 16:58:11 +0100476=head1 About KorAP-XML
477
Akron55fc2122022-07-27 13:24:39 +0200478KorAP-XML (Banski et al. 2012) is an implementation of the KorAP
479data model (Banski et al. 2013), where text data are stored physically
Akron8f69d632020-01-15 16:58:11 +0100480separated from their interpretations (i.e. annotations).
481A text document in KorAP-XML therefore consists of several files
482containing primary data, metadata and annotations.
483
484The structure of a single KorAP-XML document can be as follows:
485
486 - data.xml
487 - header.xml
488 + base
489 - tokens.xml
490 - ...
491 + struct
492 - structure.xml
493 - ...
494 + corenlp
495 - morpho.xml
496 - constituency.xml
497 - ...
498 + tree_tagger
499 - morpho.xml
500 - ...
501 - ...
502
503The C<data.xml> contains the primary data, the C<header.xml> contains
504the metadata, and the annotation layers are stored in subfolders
505like C<base>, C<struct> or C<corenlp>
Akron55fc2122022-07-27 13:24:39 +0200506(so-called "foundries"; Banski et al. 2013).
Akron8f69d632020-01-15 16:58:11 +0100507
508Metadata is available in the TEI-P5 variant I5
Akrond4c5c102020-02-11 11:47:59 +0100509(Lüngen and Sperberg-McQueen 2012). See the documentation in
510L<KorAP::XML::Meta::I5> for translatable fields.
511
512Annotations correspond to a variant of the TEI-P5 feature structures
513(TEI Consortium; Lee et al. 2004).
Akron72bc5222020-02-06 16:00:13 +0100514Annotation feature structures refer to character sequences of the primary text
515inside the C<text> element of the C<data.xml>.
516A single annotation containing the lemma of a token can have the following structure:
517
518 <span from="0" to="3">
519 <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0">
520 <f name="lex">
521 <fs>
522 <f name="lemma">zum</f>
523 </fs>
524 </f>
525 </fs>
526 </span>
527
528The C<from> and C<to> attributes are refering to the character span
529in the primary text.
530Depending on the kind of annotation (e.g. token-based, span-based, relation-based),
531the structure may vary. See L<KorAP::XML::Annotation::*> for various
532annotation preprocessors.
Akron8f69d632020-01-15 16:58:11 +0100533
534Multiple KorAP-XML documents are organized on three levels following
535the "IDS Textmodell" (Lüngen and Sperberg-McQueen 2012):
536corpus E<gt> document E<gt> text. On each level metadata information
537can be stored, that C<korapxml2krill> will merge to a single metadata
538object per text. A corpus is therefore structured as follows:
539
540 + <corpus>
541 - header.xml
542 + <document>
543 - header.xml
544 + <text>
545 - data.xml
546 - header.xml
547 - ...
548 - ...
549
550A single text can be identified by the concatenation of
551the corpus identifier, the document identifier and the text identifier.
552This identifier is called the text sigle
553(e.g. a text with the identifier C<18486> in the document C<060> in the
554corpus C<WPD17> has the text sigle C<WPD17/060/18486>, see C<--sigle>).
555
556These corpora are often stored in zip files, with which C<korapxml2krill>
557can deal with. Corpora may also be split in multiple zip archives
558(e.g. one zip file per foundry), which is also supported (see C<--input>).
559
560Examples for KorAP-XML files are included in L<KorAP::XML::Krill>
561in form of a test suite.
562The resulting JSON format merges all annotation layers
563based on a single token stream.
564
565=head2 References
566
Akron55fc2122022-07-27 13:24:39 +0200567Piotr Banski, Cyril Belica, Helge Krause, Marc Kupietz, Carsten Schnober, Oliver Schonefeld, and Andreas Witt (2011):
Akron8f69d632020-01-15 16:58:11 +0100568KorAP data model: first approximation, December.
569
Akron55fc2122022-07-27 13:24:39 +0200570Piotr Banski, Peter M. Fischer, Elena Frick, Erik Ketzan, Marc Kupietz, Carsten Schnober, Oliver Schonefeld and Andreas Witt (2012):
Akron8f69d632020-01-15 16:58:11 +0100571"The New IDS Corpus Analysis Platform: Challenges and Prospects",
572Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC 2012).
573L<PDF|http://www.lrec-conf.org/proceedings/lrec2012/pdf/789_Paper.pdf>
574
Akron55fc2122022-07-27 13:24:39 +0200575Piotr Banski, Elena Frick, Michael Hanl, Marc Kupietz, Carsten Schnober and Andreas Witt (2013):
Akron8f69d632020-01-15 16:58:11 +0100576"Robust corpus architecture: a new look at virtual collections and data access",
577Corpus Linguistics 2013. Abstract Book. Lancaster: UCREL, pp. 23-25.
578L<PDF|https://ids-pub.bsz-bw.de/frontdoor/deliver/index/docId/4485/file/Ba%c5%84ski_Frick_Hanl_Robust_corpus_architecture_2013.pdf>
579
580Kiyong Lee, Lou Burnard, Laurent Romary, Eric de la Clergerie, Thierry Declerck,
581Syd Bauman, Harry Bunt, Lionel Clément, Tomaz Erjavec, Azim Roussanaly and Claude Roux (2004):
582"Towards an international standard on featurestructure representation",
583Proceedings of the fourth International Conference on Language Resources and Evaluation (LREC 2004),
584pp. 373-376.
585L<PDF|http://www.lrec-conf.org/proceedings/lrec2004/pdf/687.pdf>
586
587Harald Lüngen and C. M. Sperberg-McQueen (2012):
588"A TEI P5 Document Grammar for the IDS Text Model",
589Journal of the Text Encoding Initiative, Issue 3 | November 2012.
590L<PDF|https://journals.openedition.org/jtei/pdf/508>
591
592TEI Consortium, eds:
593"Feature Structures",
594Guidelines for Electronic Text Encoding and Interchange.
595L<html|https://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html>
596
Akronc13a1702016-03-15 19:33:14 +0100597=head1 AVAILABILITY
598
599 https://github.com/KorAP/KorAP-XML-Krill
600
601
602=head1 COPYRIGHT AND LICENSE
603
Akron83aedd32023-02-07 10:57:41 +0100604Copyright (C) 2015-2023, L<IDS Mannheim|https://www.ids-mannheim.de/>
Akronc13a1702016-03-15 19:33:14 +0100605
Akron6882d7d2021-02-08 09:43:57 +0100606Author: L<Nils Diewald|https://www.nils-diewald.de/>
Akron81500102017-04-07 20:45:44 +0200607
Akron5c71a852016-10-31 16:00:33 +0100608Contributor: Eliza Margaretha
609
Akron6882d7d2021-02-08 09:43:57 +0100610L<KorAP::XML::Krill> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/>
Akronc13a1702016-03-15 19:33:14 +0100611Corpus Analysis Platform at the
Akron6882d7d2021-02-08 09:43:57 +0100612L<Leibniz Institute for the German Language (IDS)|https://www.ids-mannheim.de/>,
Akronc13a1702016-03-15 19:33:14 +0100613member of the
Akronf1849aa2019-12-16 23:35:33 +0100614L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>.
Akronc13a1702016-03-15 19:33:14 +0100615
Akron5c71a852016-10-31 16:00:33 +0100616This program is free software published under the
Akron6882d7d2021-02-08 09:43:57 +0100617L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>.
Akronc13a1702016-03-15 19:33:14 +0100618
619=cut