Posibility of adding a .zip file in the dictionary definition.
Parameter -l ---> Dictionary List definitions. A lists.def Gate-formatted file separated by tab can be provided or a zip file that contains the dictionary/gazetteer files including the lists.def
\ No newline at end of file
Parameter -l ---> Dictionary List definitions. A lists.def Gate-formatted file separated by tab can be provided or a zip file that contains the dictionary/gazetteer files including the lists.def
## Version 1.2, 2020-03-25
Externalization of Gate parameters: gazetteerFeatureSeparator, caseSensitive and longestMatchOnly. Now this parameters can be passed to the component.
To see the defaults please go to help.
Internal Map parameters in order to be clear managing the parameters.
OptiongazetteerFeatureSeparator=newOption("gazetteerFeatureSeparator","gazetteerFeatureSeparator",true,"The character used to add arbitrary features to gazetteer entries. Default tab");
gazetteerFeatureSeparator.setRequired(false);
options.addOption(gazetteerFeatureSeparator);
OptioncaseSensitive=newOption("caseSensitive","caseSensitive",true,"Should the gazetteer be case sensitive during matching. Default false");
caseSensitive.setRequired(false);
options.addOption(caseSensitive);
OptionlongestMatchOnly=newOption("longestMatchOnly","longestMatchOnly",true,"This parameter is only relevant when the list of lookups contains proper prefixes "
+"of other entries (e.g when both ‘Body Weight’ and ‘Body Weight loss’ are in the lists). The default behaviour (when this parameter is set to true) is to only match the longest entry, ‘Body Weight loss’ in this example. "
+"Setting this parameter to false will cause the gazetteer to match all possible prefixes.");