annotate mytools/removeDuplicate.xml @ 9:87eb5c5ddfe9

Uploaded
author xuebing
date Fri, 09 Mar 2012 20:01:43 -0500
parents f0dc65e7f6c0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
7
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
1 <tool id="removeDuplicate" name="remove duplicate">
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
2 <description>lines</description>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
3 <command> cat $input | sort | uniq > $output </command>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
4 <inputs>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
5 <param name="input" format="txt" type="data" label="Original file"/>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
6 </inputs>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
7 <outputs>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
8 <data format="input" name="output" />
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
9 </outputs>
f0dc65e7f6c0 Uploaded
xuebing
parents:
diff changeset
10 </tool>