2
|
1 <tool id="perl_snippet_text" name="Perl Snippet Text" version="1.0.0">
|
|
2 <description>Runs given perl script text</description>
|
|
3 <command interpreter="perl">
|
|
4 perl_snippet_text.pl
|
|
5 '$input'
|
|
6 $out_file1
|
|
7 $out_file2
|
|
8 $out_file3
|
|
9 #for $add in $add_inputs
|
|
10 #set $add_input = $add.add_input
|
|
11 $add_input
|
|
12 #end for
|
|
13 </command>
|
|
14 <inputs>
|
|
15 <param name="input" area="True" size="25x80" type="text" label="Script to Run" />
|
|
16 <repeat name="add_inputs" title="Additional Input Files">
|
|
17 <param format="txt" name="add_input" type="data" label="Additional File" />
|
|
18 </repeat>
|
|
19 </inputs>
|
|
20 <outputs>
|
|
21 <data format="txt" name="out_file1" label="Perl snippet output" />
|
|
22 <data format="txt" name="out_file2" label="Perl snippet stdout" />
|
|
23 <data format="txt" name="out_file3" label="Perl snippet stderr" />
|
|
24 </outputs>
|
|
25 </tool>
|