Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 1 | =pod |
| 2 | |
| 3 | =encoding utf8 |
| 4 | |
| 5 | =head1 NAME |
| 6 | |
Akron | 42f48c1 | 2020-02-14 13:08:13 +0100 | [diff] [blame] | 7 | korapxml2krill - Merge KorAP-XML data and create Krill documents |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 8 | |
| 9 | |
| 10 | =head1 SYNOPSIS |
| 11 | |
Akron | 9cb8c98 | 2024-03-22 10:46:56 +0100 | [diff] [blame^] | 12 | $ korapxml2krill [archive|extract] --input <directory|archive> [options] |
Akron | 2fd402b | 2016-10-27 21:26:48 +0200 | [diff] [blame] | 13 | |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 14 | |
| 15 | =head1 DESCRIPTION |
| 16 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 17 | L<KorAP::XML::Krill> is a library to convert KorAP-XML documents to files |
| 18 | compatible with the L<Krill|https://github.com/KorAP/Krill> indexer. |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 19 | The C<korapxml2krill> command line tool is a simple wrapper of this library. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 20 | |
| 21 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 22 | =head1 INSTALLATION |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 23 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 24 | The preferred way to install L<KorAP::XML::Krill> is to use L<cpanm|App::cpanminus>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 25 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 26 | $ cpanm https://github.com/KorAP/KorAP-XML-Krill.git |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 27 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 28 | In case everything went well, the C<korapxml2krill> tool will |
| 29 | be available on your command line immediately. |
Akron | 8ce23f7 | 2023-12-13 15:48:49 +0100 | [diff] [blame] | 30 | Minimum requirement for L<KorAP::XML::Krill> is Perl 5.32. |
Akron | eb370a0 | 2022-02-24 13:33:40 +0100 | [diff] [blame] | 31 | Optionally installing L<Archive::Tar::Builder> speeds up archive building. |
| 32 | Optional support for L<Sys::Info> to calculate available cores is available. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 33 | In addition to work with zip archives, the C<unzip> tool needs to be present. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 34 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 35 | =head1 ARGUMENTS |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 36 | |
Akron | 9cb8c98 | 2024-03-22 10:46:56 +0100 | [diff] [blame^] | 37 | $ korapxml2krill -z --input <directory> --output <filename> |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 38 | |
| 39 | Without arguments, C<korapxml2krill> converts a directory of a single KorAP-XML document. |
| 40 | It expects the input to point to the text level folder. |
| 41 | |
| 42 | =over 2 |
| 43 | |
| 44 | =item B<archive> |
| 45 | |
Akron | 9cb8c98 | 2024-03-22 10:46:56 +0100 | [diff] [blame^] | 46 | $ korapxml2krill archive -z --input <directory|archive> --output <directory|tar> |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 47 | |
| 48 | Converts 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 | |
| 55 | Extracts KorAP-XML documents from a zip file. |
| 56 | |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 57 | =item B<serial> |
| 58 | |
Akron | 9cb8c98 | 2024-03-22 10:46:56 +0100 | [diff] [blame^] | 59 | $ korapxml2krill serial -i <archive1> -i <archive2> -o <directory> -cfg <config-file> |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 60 | |
| 61 | Convert archives sequentially. The inputs are not merged but treated |
| 62 | as they are (so they may be premerged or globs). |
| 63 | the C<--out> directory is treated as the base directory where subdirectories |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 64 | are created based on the archive name. In case the C<--to-tar> flag is given, |
| 65 | the output will be a tar file. |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 66 | |
| 67 | |
Akron | 9f37ed7 | 2022-01-17 12:10:08 +0100 | [diff] [blame] | 68 | =item B<slimlog> |
| 69 | |
Akron | 9cb8c98 | 2024-03-22 10:46:56 +0100 | [diff] [blame^] | 70 | $ korapxml2krill slimlog <logfile> > <logfile-slim> |
Akron | 9f37ed7 | 2022-01-17 12:10:08 +0100 | [diff] [blame] | 71 | |
| 72 | Filters out all useless aka succesfull information from logs, to simplify |
| 73 | log checks. Expects no further options. |
| 74 | |
| 75 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 76 | =back |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 77 | |
Akron | 7606afa | 2016-10-25 16:23:49 +0200 | [diff] [blame] | 78 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 79 | =head1 OPTIONS |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 80 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 81 | =over 2 |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 82 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 83 | =item B<--input|-i> <directory|zip file> |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 84 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 85 | Directory or zip file(s) of documents to convert. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 86 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 87 | Without arguments, C<korapxml2krill> expects a folder of a single KorAP-XML |
Akron | f1a1de9 | 2016-11-02 17:32:12 +0100 | [diff] [blame] | 88 | document, while C<archive> expects a KorAP-XML corpus folder or a zip |
| 89 | file to batch process multiple files. |
| 90 | C<extract> expects zip files only. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 91 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 92 | C<archive> supports multiple input zip files with the constraint, |
| 93 | that the first archive listed contains all primary data files |
| 94 | and all meta data files. |
Akron | a76d835 | 2016-10-27 16:27:32 +0200 | [diff] [blame] | 95 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 96 | -i file/news.zip -i file/news.malt.zip -i "#file/news.tt.zip" |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 97 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 98 | Input may also be defined using BSD glob wildcards. |
| 99 | |
| 100 | -i 'file/news*.zip' |
| 101 | |
| 102 | The extended input array will be sorted in length order, so the shortest |
| 103 | path needs to contain all primary data files and all meta data files. |
| 104 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 105 | (The directory structure follows the base directory format, |
| 106 | that may include a C<.> root folder. |
| 107 | In this case further archives lacking a C<.> root folder |
| 108 | need to be passed with a hash sign in front of the archive's name. |
| 109 | This may require to quote the parameter.) |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 110 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 111 | To support zip files, a version of C<unzip> needs to be installed that is |
| 112 | compatible with the archive file. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 113 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 114 | B<The root folder switch using the hash sign is experimental and |
| 115 | may vanish in future versions.> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 116 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 117 | |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 118 | =item B<--input-base|-ib> <directory> |
| 119 | |
| 120 | The base directory for inputs. |
| 121 | |
| 122 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 123 | =item B<--output|-o> <directory|file> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 124 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 125 | Output folder for archive processing or |
| 126 | document name for single output (optional), |
| 127 | writes to C<STDOUT> by default |
| 128 | (in case C<output> is not mandatory due to further options). |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 129 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 130 | =item B<--overwrite|-w> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 131 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 132 | Overwrite files that already exist. |
Akron | 7606afa | 2016-10-25 16:23:49 +0200 | [diff] [blame] | 133 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 134 | |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 135 | =item B<--token|-t> <foundry>#<file> |
Akron | a5920b1 | 2016-06-29 18:51:21 +0200 | [diff] [blame] | 136 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 137 | Define the default tokenization by specifying |
| 138 | the name of the foundry and optionally the name |
| 139 | of the layer-file. Defaults to C<OpenNLP#tokens>. |
Akron | f1849aa | 2019-12-16 23:35:33 +0100 | [diff] [blame] | 140 | This will directly take the file instead of running |
| 141 | the layer implementation! |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 142 | |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 143 | |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 144 | =item B<--base-sentences|-bs> <foundry>#<layer> |
| 145 | |
| 146 | Define the layer for base sentences. |
| 147 | If given, this will be used instead of using C<Base#Sentences>. |
Akron | c29b8e1 | 2019-12-16 14:28:09 +0100 | [diff] [blame] | 148 | Currently C<DeReKo#Structure> and C<DGD#Structure> are the only additional |
| 149 | layers supported. |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 150 | |
| 151 | Defaults to unset. |
| 152 | |
| 153 | |
| 154 | =item B<--base-paragraphs|-bp> <foundry>#<layer> |
| 155 | |
| 156 | Define the layer for base paragraphs. |
| 157 | If given, this will be used instead of using C<Base#Paragraphs>. |
Akron | 9f37ed7 | 2022-01-17 12:10:08 +0100 | [diff] [blame] | 158 | Currently C<DeReKo#Structure> and C<DGD#Structure> are the only additional |
| 159 | layer supported. |
Akron | 3741f8b | 2016-12-21 19:55:21 +0100 | [diff] [blame] | 160 | |
| 161 | Defaults to unset. |
| 162 | |
| 163 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 164 | =item B<--base-pagebreaks|-bpb> <foundry>#<layer> |
| 165 | |
| 166 | Define the layer for base pagebreaks. |
| 167 | Currently C<DeReKo#Structure> is the only layer supported. |
| 168 | |
| 169 | Defaults to unset. |
| 170 | |
| 171 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 172 | =item B<--skip|-s> <foundry>[#<layer>] |
| 173 | |
| 174 | Skip specific annotations by specifying the foundry |
| 175 | (and optionally the layer with a C<#>-prefix), |
| 176 | e.g. C<Mate> or C<Mate#Morpho>. Alternatively you can skip C<#ALL>. |
| 177 | Can be set multiple times. |
| 178 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 179 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 180 | =item B<--anno|-a> <foundry>#<layer> |
| 181 | |
| 182 | Convert specific annotations by specifying the foundry |
| 183 | (and optionally the layer with a C<#>-prefix), |
| 184 | e.g. C<Mate> or C<Mate#Morpho>. |
| 185 | Can be set multiple times. |
| 186 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 187 | |
Akron | ed9baf0 | 2019-01-22 17:03:25 +0100 | [diff] [blame] | 188 | =item B<--non-word-tokens|-nwt> |
| 189 | |
| 190 | Tokenize non-word tokens like word tokens (defined as matching |
| 191 | C</[\d\w]/>). Useful to treat punctuations as tokens. |
| 192 | |
| 193 | Defaults to unset. |
| 194 | |
Akron | f1849aa | 2019-12-16 23:35:33 +0100 | [diff] [blame] | 195 | |
| 196 | =item B<--non-verbal-tokens|-nvt> |
| 197 | |
| 198 | Tokenize non-verbal tokens marked as in the primary data as |
| 199 | the unicode symbol 'Black Vertical Rectangle' aka \x25ae. |
| 200 | |
| 201 | Defaults to unset. |
| 202 | |
| 203 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 204 | =item B<--jobs|-j> |
| 205 | |
| 206 | Define the number of concurrent jobs in seperated forks |
| 207 | for archive processing. |
| 208 | Defaults to C<0> (everything runs in a single process). |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 209 | |
Akron | a472a24 | 2023-02-13 13:46:30 +0100 | [diff] [blame] | 210 | If C<sequential-extraction> is not set to true, this will |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 211 | also apply to extraction. |
| 212 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 213 | Pass -1, and the value will be set automatically to 5 |
Akron | 0b04b31 | 2020-10-30 17:39:18 +0100 | [diff] [blame] | 214 | times the number of available cores, in case L<Sys::Info> |
| 215 | is available. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 216 | This is I<experimental>. |
| 217 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 218 | |
Akron | 263274c | 2019-02-07 09:48:30 +0100 | [diff] [blame] | 219 | =item B<--koral|-k> |
| 220 | |
| 221 | Version of the output format. Supported versions are: |
| 222 | C<0> for legacy serialization, C<0.03> for serialization |
| 223 | with metadata fields as key-values on the root object, |
| 224 | C<0.4> for serialization with metadata fields as a list |
| 225 | of C<"@type":"koral:field"> objects. |
| 226 | |
| 227 | Currently defaults to C<0.03>. |
| 228 | |
| 229 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 230 | =item B<--sequential-extraction|-se> |
| 231 | |
| 232 | Flag to indicate, if the C<jobs> value also applies to extraction. |
| 233 | Some systems may have problems with extracting multiple archives |
| 234 | to the same folder at the same time. |
| 235 | Can be flagged using C<--no-sequential-extraction> as well. |
| 236 | Defaults to C<false>. |
| 237 | |
| 238 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 239 | =item B<--meta|-m> |
| 240 | |
| 241 | Define the metadata parser to use. Defaults to C<I5>. |
| 242 | Metadata parsers can be defined in the C<KorAP::XML::Meta> namespace. |
| 243 | This is I<experimental>. |
| 244 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 245 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 246 | =item B<--gzip|-z> |
| 247 | |
| 248 | Compress the output. |
| 249 | Expects a defined C<output> file in single processing. |
| 250 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 251 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 252 | =item B<--cache|-c> |
| 253 | |
| 254 | File to mmap a cache (using L<Cache::FastMmap>). |
| 255 | Defaults to C<korapxml2krill.cache> in the calling directory. |
| 256 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 257 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 258 | =item B<--cache-size|-cs> |
| 259 | |
| 260 | Size of the cache. Defaults to C<50m>. |
| 261 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 262 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 263 | =item B<--cache-init|-ci> |
| 264 | |
| 265 | Initialize cache file. |
| 266 | Can be flagged using C<--no-cache-init> as well. |
| 267 | Defaults to C<true>. |
| 268 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 269 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 270 | =item B<--cache-delete|-cd> |
| 271 | |
| 272 | Delete cache file after processing. |
| 273 | Can be flagged using C<--no-cache-delete> as well. |
| 274 | Defaults to C<true>. |
| 275 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 276 | |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 277 | =item B<--config|-cfg> |
| 278 | |
| 279 | Configure the parameters of your call in a file |
| 280 | of key-value pairs with whitespace separator |
| 281 | |
| 282 | overwrite 1 |
| 283 | token DeReKo#Structure |
| 284 | ... |
| 285 | |
| 286 | Supported parameters are: |
Akron | 442c4e9 | 2017-04-10 23:41:31 +0200 | [diff] [blame] | 287 | C<overwrite>, C<gzip>, C<jobs>, C<input-base>, |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 288 | C<token>, C<log>, C<cache>, C<cache-size>, C<cache-delete>, C<meta>, |
Akron | 57510c1 | 2019-01-04 14:58:53 +0100 | [diff] [blame] | 289 | C<output>, C<koral>, |
Akron | 9a2545e | 2022-01-16 15:15:50 +0100 | [diff] [blame] | 290 | C<temporary-extract>, C<sequential-extraction>, |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 291 | C<base-sentences>, C<base-paragraphs>, |
| 292 | C<base-pagebreaks>, |
| 293 | C<skip> (semicolon separated), C<sigle> |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 294 | (semicolon separated), C<anno> (semicolon separated). |
| 295 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 296 | Configuration parameters will always be overwritten by |
| 297 | passed parameters. |
| 298 | |
| 299 | |
Akron | 8150010 | 2017-04-07 20:45:44 +0200 | [diff] [blame] | 300 | =item B<--temporary-extract|-te> |
| 301 | |
Akron | a472a24 | 2023-02-13 13:46:30 +0100 | [diff] [blame] | 302 | Only valid for the C<archive> and C<serial> |
| 303 | commands. |
Akron | 8150010 | 2017-04-07 20:45:44 +0200 | [diff] [blame] | 304 | |
| 305 | This will first extract all files into a |
| 306 | directory and then will archive. |
| 307 | If the directory is given as C<:temp:>, |
| 308 | a temporary directory is used. |
| 309 | This is especially useful to avoid |
| 310 | massive unzipping and potential |
| 311 | network latency. |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 312 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 313 | |
Akron | c93a080 | 2019-07-11 15:48:34 +0200 | [diff] [blame] | 314 | =item B<--to-tar> |
| 315 | |
| 316 | Only valid for the C<archive> command. |
| 317 | |
| 318 | Writes the output into a tar archive. |
| 319 | |
| 320 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 321 | =item B<--sigle|-sg> |
| 322 | |
| 323 | Extract the given texts. |
| 324 | Can be set multiple times. |
| 325 | I<Currently only supported on C<extract>.> |
| 326 | Sigles have the structure C<Corpus>/C<Document>/C<Text>. |
| 327 | In case the C<Text> path is omitted, the whole document will be extracted. |
| 328 | On the document level, the postfix wildcard C<*> is supported. |
| 329 | |
Akron | 55fc212 | 2022-07-27 13:24:39 +0200 | [diff] [blame] | 330 | =item B<--lang> |
| 331 | |
| 332 | Preferred language for metadata fields. In case multiple titles are |
| 333 | given (on any level) with different C<xml:lang> attributes, |
| 334 | the language given is preferred. |
| 335 | Because titles may have different sources and different priorities, |
| 336 | non-specific language titles may still be preferred in case the title |
| 337 | source has a higher priority. |
| 338 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 339 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 340 | =item B<--log|-l> |
| 341 | |
Akron | 6882d7d | 2021-02-08 09:43:57 +0100 | [diff] [blame] | 342 | The L<Log::Any> log level, defaults to C<ERROR>. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 343 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 344 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 345 | =item B<--quiet> |
| 346 | |
| 347 | Silence all information (non-log) outputs. |
| 348 | |
| 349 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 350 | =item B<--help|-h> |
| 351 | |
Akron | 42f48c1 | 2020-02-14 13:08:13 +0100 | [diff] [blame] | 352 | Print help information. |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 353 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 354 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 355 | =item B<--version|-v> |
| 356 | |
| 357 | Print version information. |
| 358 | |
| 359 | =back |
| 360 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 361 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 362 | =head1 ANNOTATION SUPPORT |
| 363 | |
| 364 | L<KorAP::XML::Krill> has built-in importer for some annotation foundries and layers |
| 365 | developed in the KorAP project that are part of the KorAP preprocessing pipeline. |
| 366 | The base foundry with paragraphs, sentences, and the text element are mandatory for |
| 367 | L<Krill|https://github.com/KorAP/Krill>. |
| 368 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 369 | Base |
| 370 | #Paragraphs |
| 371 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 372 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 373 | Connexor |
| 374 | #Morpho |
| 375 | #Phrase |
| 376 | #Sentences |
| 377 | #Syntax |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 378 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 379 | CoreNLP |
| 380 | #Constituency |
| 381 | #Morpho |
| 382 | #NamedEntities |
| 383 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 384 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 385 | CMC |
| 386 | #Morpho |
| 387 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 388 | DeReKo |
| 389 | #Structure |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 390 | |
Akron | 57510c1 | 2019-01-04 14:58:53 +0100 | [diff] [blame] | 391 | DGD |
| 392 | #Morpho |
Akron | c29b8e1 | 2019-12-16 14:28:09 +0100 | [diff] [blame] | 393 | #Structure |
Akron | 57510c1 | 2019-01-04 14:58:53 +0100 | [diff] [blame] | 394 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 395 | DRuKoLa |
| 396 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 397 | |
Akron | 9f37ed7 | 2022-01-17 12:10:08 +0100 | [diff] [blame] | 398 | Glemm |
Akron | abb3690 | 2021-10-11 15:51:06 +0200 | [diff] [blame] | 399 | #Morpho |
| 400 | |
Akron | 9f37ed7 | 2022-01-17 12:10:08 +0100 | [diff] [blame] | 401 | Gingko |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 402 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 403 | |
Akron | ed9baf0 | 2019-01-22 17:03:25 +0100 | [diff] [blame] | 404 | HNC |
| 405 | #Morpho |
| 406 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 407 | LWC |
| 408 | #Dependency |
| 409 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 410 | Malt |
| 411 | #Dependency |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 412 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 413 | MarMoT |
| 414 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 415 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 416 | Mate |
| 417 | #Dependency |
| 418 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 419 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 420 | MDParser |
| 421 | #Dependency |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 422 | |
Akron | e85a776 | 2022-07-22 08:05:03 +0200 | [diff] [blame] | 423 | NKJP |
| 424 | #Morpho |
| 425 | #NamedEntities |
| 426 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 427 | OpenNLP |
| 428 | #Morpho |
| 429 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 430 | |
Akron | 0b04b31 | 2020-10-30 17:39:18 +0100 | [diff] [blame] | 431 | RWK |
| 432 | #Morpho |
| 433 | #Structure |
| 434 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 435 | Sgbr |
| 436 | #Lemma |
| 437 | #Morpho |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 438 | |
Marc Kupietz | b8c5382 | 2024-03-16 18:54:08 +0100 | [diff] [blame] | 439 | Spacy |
| 440 | #Morpho |
| 441 | |
Akron | 7d5e638 | 2019-08-08 16:36:27 +0200 | [diff] [blame] | 442 | Talismane |
| 443 | #Dependency |
| 444 | #Morpho |
| 445 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 446 | TreeTagger |
| 447 | #Morpho |
| 448 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 449 | |
Akron | 83aedd3 | 2023-02-07 10:57:41 +0100 | [diff] [blame] | 450 | UDPipe |
| 451 | #Dependency |
| 452 | #Morpho |
| 453 | |
Akron | 821db3d | 2017-04-06 21:19:31 +0200 | [diff] [blame] | 454 | XIP |
| 455 | #Constituency |
| 456 | #Morpho |
| 457 | #Sentences |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 458 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 459 | |
| 460 | More importers are in preparation. |
| 461 | New annotation importers can be defined in the C<KorAP::XML::Annotation> namespace. |
| 462 | See the built-in annotation importers as examples. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 463 | |
Akron | f73ffb6 | 2018-06-27 12:13:59 +0200 | [diff] [blame] | 464 | |
Akron | 41e6c8b | 2021-10-14 20:22:18 +0200 | [diff] [blame] | 465 | =head1 METADATA SUPPORT |
| 466 | |
| 467 | L<KorAP::XML::Krill> has built-in importer for some meta data variants |
| 468 | developed in the KorAP project that are part of the KorAP preprocessing pipeline. |
| 469 | |
| 470 | =over 2 |
| 471 | |
| 472 | =item I5 - Meta data for all I5 files |
| 473 | |
| 474 | =item Sgbr - Meta data from the Schreibgebrauch project |
| 475 | |
| 476 | =item Gingko - Meta data from the Gingko project in addition to I5 |
| 477 | |
Akron | 2532f1b | 2023-05-15 13:41:24 +0200 | [diff] [blame] | 478 | =item ICC - Meta data for the ICC in addition to I5 |
| 479 | |
Akron | 41e6c8b | 2021-10-14 20:22:18 +0200 | [diff] [blame] | 480 | =back |
| 481 | |
| 482 | More importers are in preparation. |
| 483 | New meta data importers can be defined in the C<KorAP::XML::Meta> namespace. |
| 484 | See the built-in meta data importers as examples. |
| 485 | |
| 486 | |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 487 | =head1 About KorAP-XML |
| 488 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 489 | KorAP-XML (Bański et al. 2012) is an implementation of the KorAP |
| 490 | data model (Bański et al. 2013), where text data are stored physically |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 491 | separated from their interpretations (i.e. annotations). |
| 492 | A text document in KorAP-XML therefore consists of several files |
| 493 | containing primary data, metadata and annotations. |
| 494 | |
| 495 | The structure of a single KorAP-XML document can be as follows: |
| 496 | |
| 497 | - data.xml |
| 498 | - header.xml |
| 499 | + base |
| 500 | - tokens.xml |
| 501 | - ... |
| 502 | + struct |
| 503 | - structure.xml |
| 504 | - ... |
| 505 | + corenlp |
| 506 | - morpho.xml |
| 507 | - constituency.xml |
| 508 | - ... |
| 509 | + tree_tagger |
| 510 | - morpho.xml |
| 511 | - ... |
| 512 | - ... |
| 513 | |
| 514 | The C<data.xml> contains the primary data, the C<header.xml> contains |
| 515 | the metadata, and the annotation layers are stored in subfolders |
| 516 | like C<base>, C<struct> or C<corenlp> |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 517 | (so-called "foundries"; Bański et al. 2013). |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 518 | |
| 519 | Metadata is available in the TEI-P5 variant I5 |
Akron | d4c5c10 | 2020-02-11 11:47:59 +0100 | [diff] [blame] | 520 | (Lüngen and Sperberg-McQueen 2012). See the documentation in |
| 521 | L<KorAP::XML::Meta::I5> for translatable fields. |
| 522 | |
| 523 | Annotations correspond to a variant of the TEI-P5 feature structures |
| 524 | (TEI Consortium; Lee et al. 2004). |
Akron | 72bc522 | 2020-02-06 16:00:13 +0100 | [diff] [blame] | 525 | Annotation feature structures refer to character sequences of the primary text |
| 526 | inside the C<text> element of the C<data.xml>. |
| 527 | A single annotation containing the lemma of a token can have the following structure: |
| 528 | |
| 529 | <span from="0" to="3"> |
| 530 | <fs type="lex" xmlns="http://www.tei-c.org/ns/1.0"> |
| 531 | <f name="lex"> |
| 532 | <fs> |
| 533 | <f name="lemma">zum</f> |
| 534 | </fs> |
| 535 | </f> |
| 536 | </fs> |
| 537 | </span> |
| 538 | |
| 539 | The C<from> and C<to> attributes are refering to the character span |
| 540 | in the primary text. |
| 541 | Depending on the kind of annotation (e.g. token-based, span-based, relation-based), |
| 542 | the structure may vary. See L<KorAP::XML::Annotation::*> for various |
| 543 | annotation preprocessors. |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 544 | |
| 545 | Multiple KorAP-XML documents are organized on three levels following |
| 546 | the "IDS Textmodell" (Lüngen and Sperberg-McQueen 2012): |
| 547 | corpus E<gt> document E<gt> text. On each level metadata information |
| 548 | can be stored, that C<korapxml2krill> will merge to a single metadata |
| 549 | object per text. A corpus is therefore structured as follows: |
| 550 | |
| 551 | + <corpus> |
| 552 | - header.xml |
| 553 | + <document> |
| 554 | - header.xml |
| 555 | + <text> |
| 556 | - data.xml |
| 557 | - header.xml |
| 558 | - ... |
| 559 | - ... |
| 560 | |
| 561 | A single text can be identified by the concatenation of |
| 562 | the corpus identifier, the document identifier and the text identifier. |
| 563 | This identifier is called the text sigle |
| 564 | (e.g. a text with the identifier C<18486> in the document C<060> in the |
| 565 | corpus C<WPD17> has the text sigle C<WPD17/060/18486>, see C<--sigle>). |
| 566 | |
| 567 | These corpora are often stored in zip files, with which C<korapxml2krill> |
| 568 | can deal with. Corpora may also be split in multiple zip archives |
| 569 | (e.g. one zip file per foundry), which is also supported (see C<--input>). |
| 570 | |
| 571 | Examples for KorAP-XML files are included in L<KorAP::XML::Krill> |
| 572 | in form of a test suite. |
| 573 | The resulting JSON format merges all annotation layers |
| 574 | based on a single token stream. |
| 575 | |
| 576 | =head2 References |
| 577 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 578 | Piotr Bański, Cyril Belica, Helge Krause, Marc Kupietz, Carsten Schnober, Oliver Schonefeld, and Andreas Witt (2011): |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 579 | KorAP data model: first approximation, December. |
| 580 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 581 | Piotr Bański, Peter M. Fischer, Elena Frick, Erik Ketzan, Marc Kupietz, Carsten Schnober, Oliver Schonefeld and Andreas Witt (2012): |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 582 | "The New IDS Corpus Analysis Platform: Challenges and Prospects", |
| 583 | Proceedings of the Eighth International Conference on Language Resources and Evaluation (LREC 2012). |
| 584 | L<PDF|http://www.lrec-conf.org/proceedings/lrec2012/pdf/789_Paper.pdf> |
| 585 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 586 | Piotr Bański, Elena Frick, Michael Hanl, Marc Kupietz, Carsten Schnober and Andreas Witt (2013): |
Akron | 8f69d63 | 2020-01-15 16:58:11 +0100 | [diff] [blame] | 587 | "Robust corpus architecture: a new look at virtual collections and data access", |
| 588 | Corpus Linguistics 2013. Abstract Book. Lancaster: UCREL, pp. 23-25. |
| 589 | L<PDF|https://ids-pub.bsz-bw.de/frontdoor/deliver/index/docId/4485/file/Ba%c5%84ski_Frick_Hanl_Robust_corpus_architecture_2013.pdf> |
| 590 | |
| 591 | Kiyong Lee, Lou Burnard, Laurent Romary, Eric de la Clergerie, Thierry Declerck, |
| 592 | Syd Bauman, Harry Bunt, Lionel Clément, Tomaz Erjavec, Azim Roussanaly and Claude Roux (2004): |
| 593 | "Towards an international standard on featurestructure representation", |
| 594 | Proceedings of the fourth International Conference on Language Resources and Evaluation (LREC 2004), |
| 595 | pp. 373-376. |
| 596 | L<PDF|http://www.lrec-conf.org/proceedings/lrec2004/pdf/687.pdf> |
| 597 | |
| 598 | Harald Lüngen and C. M. Sperberg-McQueen (2012): |
| 599 | "A TEI P5 Document Grammar for the IDS Text Model", |
| 600 | Journal of the Text Encoding Initiative, Issue 3 | November 2012. |
| 601 | L<PDF|https://journals.openedition.org/jtei/pdf/508> |
| 602 | |
| 603 | TEI Consortium, eds: |
| 604 | "Feature Structures", |
| 605 | Guidelines for Electronic Text Encoding and Interchange. |
| 606 | L<html|https://www.tei-c.org/release/doc/tei-p5-doc/en/html/FS.html> |
| 607 | |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 608 | =head1 AVAILABILITY |
| 609 | |
| 610 | https://github.com/KorAP/KorAP-XML-Krill |
| 611 | |
| 612 | |
| 613 | =head1 COPYRIGHT AND LICENSE |
| 614 | |
Akron | a351837 | 2024-01-22 23:29:00 +0100 | [diff] [blame] | 615 | Copyright (C) 2015-2024, L<IDS Mannheim|https://www.ids-mannheim.de/> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 616 | |
Akron | 6882d7d | 2021-02-08 09:43:57 +0100 | [diff] [blame] | 617 | Author: L<Nils Diewald|https://www.nils-diewald.de/> |
Akron | 8150010 | 2017-04-07 20:45:44 +0200 | [diff] [blame] | 618 | |
Marc Kupietz | b8c5382 | 2024-03-16 18:54:08 +0100 | [diff] [blame] | 619 | Contributor: Eliza Margaretha, Marc Kupietz |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 620 | |
Akron | 6882d7d | 2021-02-08 09:43:57 +0100 | [diff] [blame] | 621 | L<KorAP::XML::Krill> is developed as part of the L<KorAP|https://korap.ids-mannheim.de/> |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 622 | Corpus Analysis Platform at the |
Akron | 6882d7d | 2021-02-08 09:43:57 +0100 | [diff] [blame] | 623 | L<Leibniz Institute for the German Language (IDS)|https://www.ids-mannheim.de/>, |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 624 | member of the |
Akron | f1849aa | 2019-12-16 23:35:33 +0100 | [diff] [blame] | 625 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 626 | |
Akron | 5c71a85 | 2016-10-31 16:00:33 +0100 | [diff] [blame] | 627 | This program is free software published under the |
Akron | 6882d7d | 2021-02-08 09:43:57 +0100 | [diff] [blame] | 628 | L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>. |
Akron | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 629 | |
| 630 | =cut |