Mercurial > repos > stevecassidy > nltktools
comparison g_pos.xml @ 3:0df72a8ab095 draft default tip
planemo upload for repository https://github.com/Alveo/alveo-galaxy-tools commit f2432aaedd36ae7662873623d8861d0982dffdd2
| author | stevecassidy |
|---|---|
| date | Mon, 20 Nov 2017 22:52:11 -0500 |
| parents | e991d4e60c17 |
| children |
comparison
equal
deleted
inserted
replaced
| 2:a47980ef2b96 | 3:0df72a8ab095 |
|---|---|
| 2 <description>Part of Speech tagging</description> | 2 <description>Part of Speech tagging</description> |
| 3 | 3 |
| 4 <requirements> | 4 <requirements> |
| 5 <requirement type="package" version="3.2.1">nltk</requirement> | 5 <requirement type="package" version="3.2.1">nltk</requirement> |
| 6 </requirements> | 6 </requirements> |
| 7 | 7 |
| 8 <command interpreter="python"> | 8 <command interpreter="python"> |
| 9 g_pos.py --input $input1 --output $postags | 9 g_pos.py --input $input1 --output $postags |
| 10 </command> | 10 </command> |
| 11 | 11 |
| 12 <inputs> | 12 <inputs> |
| 16 <param name="job_name" type="text" size="25" | 16 <param name="job_name" type="text" size="25" |
| 17 label="Supply a name for the output to remind you what they contain" | 17 label="Supply a name for the output to remind you what they contain" |
| 18 value="POS Tags"/> | 18 value="POS Tags"/> |
| 19 </inputs> | 19 </inputs> |
| 20 <outputs> | 20 <outputs> |
| 21 <data format="json" name="postags" label="${job_name}"/> | 21 <data format="txt" name="postags" label="${job_name}"/> |
| 22 </outputs> | 22 </outputs> |
| 23 | 23 |
| 24 <tests> | 24 <tests> |
| 25 <test> | 25 <test> |
| 26 <param name='input1' value='sample_text_tok.json'/> | 26 <param name='input1' value='sample_text.txt'/> |
| 27 <param name='job_name' value='testpos1'/> | 27 <param name='job_name' value='testpos1'/> |
| 28 <output name='tokens' file='sample_text_pos.json'/> | 28 <output name='postags' file='sample_text_pos.dat'/> |
| 29 </test> | 29 </test> |
| 30 </tests> | 30 </tests> |
| 31 | 31 |
| 32 <help> | 32 <help> |
| 33 Apply a Part of Speech (POS) tagger to a list of sentences. | 33 Apply a Part of Speech (POS) tagger to a list of sentences. |
