1
|
1 <!--
|
|
2 alvisnlp
|
|
3 -verbose
|
|
4 -noColors
|
|
5 -param search subject word -param lemmatize active false ## deactivate lemmatization
|
|
6 -param search subject plain ## search inside words (deactivates lemmatization)
|
|
7 -param search subject prefix ## search at the beginning of words (deactivates lemmatization)
|
|
8 -param remove-overlaps active true ## longest only
|
|
9 -param lemmatize treeTaggerExecutable /home/rbossy/dist/tree-tagger/bin/tree-tagger
|
|
10 -param parFile /home/rbossy/dist/tree-tagger/english-par-linux-3.2.bin
|
|
11 -param write fileName "out.txt"
|
|
12 -param search dictFile dictionary-lemma.txt
|
|
13 -param search trieSource dictionary-lemma.trie
|
|
14 alvis-annotator.plan
|
|
15 -->
|
|
16 <tool id="alvis-annotator" name="alvis-annotator" version="XXX Tool Version">
|
|
17 <description>XXX Tool Description</description>
|
|
18 <command interpreter="python">alvis-annotator.py -input ${input} -dict ${dict} -output ${output}</command>
|
|
19 <inputs>
|
|
20 <param format="txt" name="input" type="data" label="input" help="A corpus file" />
|
|
21 <param format="txt" name="dict" type="data" label="dict" help="A dictionary" />
|
|
22 </inputs>
|
|
23 <outputs>
|
|
24 <data name="output" format="trie" help="The result" />
|
|
25 </outputs>
|
|
26 <tests>
|
|
27 <test>
|
|
28 </test>
|
|
29 </tests>
|
|
30 <help>
|
|
31 </help>
|
|
32 </tool>
|