annotate count_cluster_size.xml @ 2:13656c2d7c73
draft
Uploaded fastaselect as sh
author |
john-mccallum |
date |
Wed, 26 Jun 2013 22:41:02 -0400 |
parents |
84be1fe7e34a |
children |
|
rev |
line source |
0
|
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
|