6
|
1 <tool name="File Splitter" id="masscomb_filesplitter" version="0.0.1">
|
|
2 <description>Basic file splitting</description>
|
|
3 <!--
|
|
4 For remote debugging start you listener on port 8000 and use the following as command interpreter:
|
|
5 java -jar -Xdebug -Xrunjdwp:transport=dt_socket,address=D0100564.wurnet.nl:8000
|
|
6 -->
|
|
7 <command interpreter="java -jar">
|
|
8 MassComb.jar
|
|
9 -action FILESPLITTER
|
|
10 -inputFile $inputFile
|
|
11 -outputFile $outputFile
|
|
12 -splitExpression $splitExpression
|
|
13 -nameExpression $nameExpression
|
|
14 </command>
|
|
15 <inputs>
|
|
16 <param name="inputFile" type="data" format="" label="Input file to split"/>
|
|
17
|
|
18 <param name="splitExpression" type="select" label="(regular)Expression to split on" help="">
|
|
19 <option value="^>.+">line start with >alphanumeric</option>
|
|
20 </param>
|
|
21 <param name="nameExpression" type="select" label="(regular)Expression for file name" help="">
|
|
22 <option value="SLASHw+">alphanumeric part</option>
|
|
23 </param>
|
|
24
|
|
25
|
|
26 </inputs>
|
|
27 <outputs>
|
|
28 <data format="prims.fileset.zip" name="outputFile" />
|
|
29 </outputs>
|
|
30 <tests>
|
|
31 <test>
|
|
32 </test>
|
|
33 </tests>
|
|
34 <help>
|
|
35
|
|
36 </help>
|
|
37 </tool>
|