diff fasta_affixer.xml @ 9:c2c69c6090f0 draft

Uploaded
author petr-novak
date Fri, 31 Jan 2020 06:55:23 -0500
parents a4cd8608ef6b
children 58807b35777a
line wrap: on
line diff
--- a/fasta_affixer.xml	Mon Dec 09 04:14:48 2019 -0500
+++ b/fasta_affixer.xml	Fri Jan 31 06:55:23 2020 -0500
@@ -1,19 +1,19 @@
 <tool id="fasta_affixer" name="FASTA read name affixer" version="1.0.0">
-<description> Tool appending suffix and prefix to sequences names </description>
+<description> Appending suffix and prefix to the read names </description>
 <command interpreter="python3">
 fasta_affixer.py -f $input -p "$prefix" -s "$suffix" -n $nspace -o $output
 </command>
 
  <inputs>
-  <param format="fasta" type="data" name="input" label="Choose your fasta file" />
-  <param name="prefix" type="text" size="10" value="" label="Prefix" help="Enter prefix which will be added to all sequences names" />
-  <param name="suffix" type="text" size="10" value="" label="Suffix" help="Enter suffix which will be added to all sequences names"/>
-  <param name="nspace" type="integer" size="10" value="0" min="0" max="1000" label="Number of spaces in name to ignore" help="Sequence name is a string before the first space. If you want name to include spaces in name, enter positive integer. All other characters beyond ignored spaces are omitted"/>
+  <param format="fasta" type="data" name="input" label="Choose your FASTA file" />
+  <param name="prefix" type="text" size="10" value="" label="Prefix" help="Enter prefix which will be added to all read names" />
+  <param name="suffix" type="text" size="10" value="" label="Suffix" help="Enter suffix which will be added to all read names"/>
+  <param name="nspace" type="integer" size="10" value="0" min="0" max="1000" label="Number of spaces in the name to ignore" help="By default, a string before the first space is considered to be the read name, and all characters following the space are discarded. If you want to keep the information following the space(s) in the name, enter positive integer."/>
  </inputs>
 
 
  <outputs>
- 	<data format="fasta" name="output" label="fasta dataset ${input.hid} with modified sequence names" />
+ 	<data format="fasta" name="output" label="FASTA dataset ${input.hid} with modified sequence names" />
  </outputs>
 
  <tests>