@@ -119,23 +119,25 @@ public class RepositoryManifest : AbstractAddonRepository
119119 public override IEnumerable < KeyValuePair < string , AbstractExporter > > AddonExporters =>
120120 new Dictionary < string , AbstractExporter >
121121 {
122- { "JSON-Export (*.json)|*.json" , new ExporterJson ( ) } ,
123- { "XML-Export (*.xml)|*.xml" , new ExporterXml ( ) } ,
124- { "TLV-XML-Export (*.xml)|*.xml" , new ExporterTlv ( ) } ,
125- { "CorpusExplorer v6 (*.cec6)|*.cec6" , new ExporterCec6 ( ) } ,
126- { "CorpusExplorer v6+GZIP (*.cec6.gz)|*.cec6.gz" , new ExporterCec6 { UseCompression = true } } ,
127- { "Plaintext-Export (*.txt)|*.txt" , new ExporterPlaintext ( ) } ,
128- { "Plaintext-Export [Nur Wort-Layer] (*.txt)|*.txt" , new ExporterPlaintextPure ( ) } ,
129- { "Plaintext-Export [Nur Wort-Layer - Eine Datei] (*.txt)|*.txt" , new ExporterPlaintextPureInOneFile ( ) } ,
130- { "Einfacher HTML-Export [Nur Wort-Layer] (*.txt)|*.txt" , new ExporterHtmlPure ( ) } ,
131- { "CSV-Export [Nur Metadatan] (*.csv)|*.csv" , new ExporterCsvMetadataOnly ( ) } ,
132- { "CSV-Export [Metadaten + Wort-Layer] (*.csv)|*.csv" , new ExporterCsv ( ) } ,
133- { "Abfragen-Export [Nur für Schnappschüsse] (*.ceusd)|*.ceusd" , new ExporterQuery ( ) } ,
134- { "CoNLL (*.conll)|*.conll" , new ExporterConll ( ) } ,
135- { "TreeTagger (*.treetagger)|*.treetagger" , new ExporterTreeTagger ( ) } ,
136- { "TreeTagger + Satzgrenze (*.treetagger)|*.treetagger" , new ExporterTreeTagger { UseSentenceTag = true } } ,
137- { "CorpusWorkBench (*.vrt)|*.vrt" , new ExporterCorpusWorkBench { UseSentenceTag = false } } ,
138- { "CorpusWorkBench + Satzgrenze (*.vrt)|*.vrt" , new ExporterCorpusWorkBench { UseSentenceTag = true } }
122+ { "JSON-Export (*.json)|*.json" , new ExporterJson ( ) } ,
123+ { "XML-Export (*.xml)|*.xml" , new ExporterXml ( ) } ,
124+ { "TLV-XML-Export (*.xml)|*.xml" , new ExporterTlv ( ) } ,
125+ { "CorpusExplorer v6 (*.cec6)|*.cec6" , new ExporterCec6 ( ) } ,
126+ { "CorpusExplorer v6 + LZ4 (*.cec6.lz4)|*.cec6.lz4" , new ExporterCec6 { UseCompression = true } } ,
127+ { "CorpusExplorer v6 + GZip (*.cec6.gz)|*.cec6.gz" , new ExporterCec6 { UseCompression = true } } ,
128+ { "Plaintext-Export (*.txt)|*.txt" , new ExporterPlaintext ( ) } ,
129+ { "Plaintext-Export [Nur Wort-Layer] (*.txt)|*.txt" , new ExporterPlaintextPure ( ) } ,
130+ { "Plaintext-Export [Nur Wort-Layer - Eine Datei] (*.txt)|*.txt" , new ExporterPlaintextPureInOneFile ( ) } ,
131+ { "Einfacher HTML-Export [Nur Wort-Layer] (*.txt)|*.txt" , new ExporterHtmlPure ( ) } ,
132+ { "CSV-Export [Nur Metadatan] (*.csv)|*.csv" , new ExporterCsvMetadataOnly ( ) } ,
133+ { "CSV-Export [Metadaten + Wort-Layer] (*.csv)|*.csv" , new ExporterCsv ( ) } ,
134+ { "Abfragen-Export [Nur für Schnappschüsse] (*.ceusd)|*.ceusd" , new ExporterQuery ( ) } ,
135+ { "CoNLL (*.conll)|*.conll" , new ExporterConll ( ) } ,
136+ { "TreeTagger (*.treetagger)|*.treetagger" , new ExporterTreeTagger ( ) } ,
137+ { "TreeTagger + Satzgrenze (*.treetagger)|*.treetagger" , new ExporterTreeTagger { UseSentenceTag = true } } ,
138+ { "CorpusWorkBench (*.vrt)|*.vrt" , new ExporterCorpusWorkBench { UseSentenceTag = false } } ,
139+ { "CorpusWorkBench + Satzgrenze (*.vrt)|*.vrt" , new ExporterCorpusWorkBench { UseSentenceTag = true } } ,
140+ { "Sketch Engine VERT (*.vert)|*.vert" , new ExporterSketchEngine ( ) } ,
139141 } ;
140142
141143 /// <summary>
@@ -145,12 +147,13 @@ public class RepositoryManifest : AbstractAddonRepository
145147 public override IEnumerable < KeyValuePair < string , AbstractImporter > > AddonImporter =>
146148 new Dictionary < string , AbstractImporter >
147149 {
148- { "CorpusExplorer v6 (*.cec6, *.cec6.gz)|*.cec6;*.cec6.gz" , new ImporterCec6 ( ) } ,
150+ { "CorpusExplorer v6 (*.cec6, *.cec6.lz4, *.cec6. gz)|*.cec6;*.cec6.gz;*.cec6.lz4 " , new ImporterCec6 ( ) } ,
149151 { "CorpusExplorer v6 [STREAM] (*.cec6)|*.cec6" , new ImporterCec6Stream ( ) } ,
150152 { "TLV-XML (*.xml)|*.xml" , new ImporterTlv ( ) } ,
151153 { "CoNLL (*.conll)|*.conll" , new ImporterConll ( ) } ,
152154 { "TreeTagger (*.txt)|*.txt" , new ImporterTreeTagger ( ) } ,
153- { "CorpusWorkBench VRT (*.vrt)|*.vrt" , new ImporterCorpusWorkBench ( ) }
155+ { "CorpusWorkBench VRT (*.vrt)|*.vrt" , new ImporterCorpusWorkBench ( ) } ,
156+ { "Sketch Engine VERT (*.vert)|*.vert" , new ImporterSketchEngine ( ) } ,
154157 } ;
155158
156159 /// <summary>
@@ -193,16 +196,18 @@ public class RepositoryManifest : AbstractAddonRepository
193196 new IAction [ ]
194197 {
195198 new BasicInformationAction ( ) ,
196-
199+
197200 new ClusterAction ( ) ,
198201 new ClusterListAction ( ) ,
199202 new ConvertAction ( ) ,
200203 new CooccurrenceAction ( ) ,
201204 new CooccurrenceCorrespondingAction ( ) ,
202205 new CooccurrenceCrossAction ( ) ,
203206 new CooccurrenceCrossFullAction ( ) ,
207+ new CooccurrencePolarisationAction ( ) ,
204208 new CooccurrenceProfileAction ( ) ,
205209 new CooccurrenceSelectedAction ( ) ,
210+ new CooccurrenceSelectedCorrespondingAction ( ) ,
206211 new CorrespondingValuesAction ( ) ,
207212 new CrossFrequencyAction ( ) ,
208213 new CrossFrequencyCorrespondingAction ( ) ,
@@ -216,7 +221,7 @@ public class RepositoryManifest : AbstractAddonRepository
216221 new DocumentTermFrequencyAction ( ) ,
217222
218223 new EditDistanceAction ( ) ,
219-
224+
220225 new Frequency1Action ( ) ,
221226 new Frequency1RawAction ( ) ,
222227 new Frequency1SelectAction ( ) ,
@@ -255,16 +260,22 @@ public class RepositoryManifest : AbstractAddonRepository
255260
256261 new NamedEntityAction ( ) ,
257262 new NGramAction ( ) ,
263+ new NGramCooccurrenceAction ( ) ,
258264 new NGramCorrespondingAction ( ) ,
259265 new NGramSelectedAction ( ) ,
266+ new NGramSelectedCooccurrenceAction ( ) ,
260267
261268 new PositionFrequencyAction ( ) ,
262269 new PositionFrequencyCorrespondingAction ( ) ,
263270
264271 new QueryAction ( ) ,
272+ new QueryCountAllTokenMatchesAction ( ) ,
273+ new QueryCountDocumentsAction ( ) ,
274+ new QueryCountSentencesAction ( ) ,
265275 new QueryListAction ( ) ,
266276
267277 new SentenceCountAction ( ) ,
278+ new SizeAction ( ) ,
268279 new StyleBurrowsDeltaAction ( ) ,
269280 new StyleNgramAction ( ) ,
270281
0 commit comments