comparison count_cluster_size.xml @ 0:84be1fe7e34a draft

Uploaded
author john-mccallum
date Thu, 06 Sep 2012 23:05:22 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:84be1fe7e34a
1 <?xml version="1.0"?>
2 <tool id="count_clustersize_1" name="count_clustersize">
3 <description>Get cluster size DNAclust output</description>
4 <command>awk 'OFS="\t" {print$1, NF}' $inputClusterFile > $outputfile </command>
5 <inputs>
6
7 <param format="tabular" name="inputClusterFile" type="data" label=" Cluster input file from DNAclust"/>
8 </inputs>
9 <outputs>
10 <data format="tabular" name="outputfile" />
11 </outputs>
12
13 <help>
14 Returns the number of members in a cluster by counting columns from DNA clust output
15
16 </help>
17 </tool>
18