Mercurial > repos > devteam > fasta_to_tabular
comparison fasta_to_tabular.xml @ 1:5cabbe4cfaf4 draft
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
author | devteam |
---|---|
date | Tue, 13 Oct 2015 12:20:15 -0400 |
parents | ae709fd50581 |
children | ff4751ce764d |
comparison
equal
deleted
inserted
replaced
0:ae709fd50581 | 1:5cabbe4cfaf4 |
---|---|
1 <tool id="fasta2tab" name="FASTA-to-Tabular" version="1.1.0"> | 1 <tool id="fasta2tab" name="FASTA-to-Tabular" version="1.1.0"> |
2 <description>converter</description> | 2 <description>converter</description> |
3 <command interpreter="python">fasta_to_tabular.py $input $output $keep_first $descr_columns</command> | 3 <command interpreter="python">fasta_to_tabular.py $input $output $keep_first $descr_columns</command> |
4 <inputs> | 4 <inputs> |
5 <param name="input" type="data" format="fasta" label="Convert these sequences"/> | 5 <param name="input" type="data" format="fasta" label="Convert these sequences"/> |
6 <param name="descr_columns" type="integer" size="2" value="1" label="How many columns to divide title string into?" help="Typically 2 to take the ID (first word) and decription (rest) as two columns, or 1 to give a single column"> | 6 <param name="descr_columns" type="integer" value="1" label="How many columns to divide title string into?" help="Typically 2 to take the ID (first word) and decription (rest) as two columns, or 1 to give a single column"> |
7 <validator type="in_range" min="1" /> | 7 <validator type="in_range" min="1" /> |
8 </param> | 8 </param> |
9 <param name="keep_first" type="integer" size="5" value="0" label="How many title characters to keep?" help="Applies only to the first column taken from the title string ('0' = keep the whole thing), useful when your sequence identifiers are all the same length."> | 9 <param name="keep_first" type="integer" value="0" label="How many title characters to keep?" help="Applies only to the first column taken from the title string ('0' = keep the whole thing), useful when your sequence identifiers are all the same length."> |
10 <validator type="in_range" min="0" /> | 10 <validator type="in_range" min="0" /> |
11 </param> | 11 </param> |
12 </inputs> | 12 </inputs> |
13 <outputs> | 13 <outputs> |
14 <data name="output" format="tabular"/> | 14 <data name="output" format="tabular"/> |