diff trtr.xml @ 30:c92ea5a8dec6

planemo upload for repository https://github.com/lparsons/galaxy_tools/tree/master/tools/trtr commit 6f76316d57fa4ec6b16aeed61e197b2c117f006d-dirty
author lparsons
date Mon, 14 Mar 2016 16:18:55 -0400
parents 4e6b9640989f
children
line wrap: on
line diff
--- a/trtr.xml	Sat Mar 12 14:50:15 2016 -0500
+++ b/trtr.xml	Mon Mar 14 16:18:55 2016 -0400
@@ -1,43 +1,43 @@
-<tool id="trtr" name="TRTR">
-	<requirements>
-		    <requirement type="package" version="1.0">trtr</requirement>
-	</requirements>
+<tool id="trtr" name="TRTR" version="1.0galaxy1">
+    <description>Trim Reads of Tandem Repeat in a fastq file. </description>
+
+    <requirements>
+        <requirement type="package" version="1.0">trtr</requirement>
+    </requirements>
 
-	<description>Trim Reads of Tandem Repeat in a fastq file. </description>
-	
-	<command>
-		trtr $input $max_repeat $aggressive > $output
-	</command>
-	
-	<inputs>
-		<param format="fastq" name="input" type="data" label="Source file"/>
-		<param name="max_repeat" type="integer" value="10" label="Maximum repeat length" />
-		<param name="aggressive" type="integer" value="1" label="Aggressive? See description."/>
-	</inputs>
-	
-	<outputs>
-		<data format_source="input" name="output" />
-	</outputs>
+    <command>
+        trtr $input $max_repeat $aggressive > $output
+    </command>
+
+    <inputs>
+        <param format="fastq" name="input" type="data" label="Source file"/>
+        <param name="max_repeat" type="integer" value="10" label="Maximum repeat length" />
+        <param name="aggressive" type="integer" value="1" label="Aggressive? See description."/>
+    </inputs>
+
+    <outputs>
+        <data format_source="input" name="output" />
+    </outputs>
 
-  <tests>
-    <test>
-      <param name="input" value="small.fastq"/>
-      <output name="output" file="smallTrimmed.fastq"/>
-    </test>
-    <test>
-      <param name="input" value="medium.fastq"/>
-      <output name="output" file="mediumTrimmed.fastq"/>
-    </test>
-  </tests>
+    <tests>
+        <test>
+            <param name="input" value="small.fastq"/>
+            <output name="output" file="smallTrimmed.fastq"/>
+        </test>
+        <test>
+            <param name="input" value="medium.fastq"/>
+            <output name="output" file="mediumTrimmed.fastq"/>
+        </test>
+    </tests>
 
-  <help>
-This tool removes tandem repeats from ends of unaligned sequencing reads (leaving one copy). This prevents reads that don't span the repeated region from overlapping and leading to innaccurate SNPs calls.
+    <help>
+        This tool removes tandem repeats from ends of unaligned sequencing reads (leaving one copy). This prevents reads that don't span the repeated region from overlapping and leading to innaccurate SNPs calls.
 
-The maximimum repeat length is adjustable (use 1 to trim only homopolymers).
+        The maximimum repeat length is adjustable (use 1 to trim only homopolymers).
 
-The "aggressive" option should not be touched in general. Setting to 0 will prevent the program from trimming to exactly 1 copy of the repeat, instead leaving between 1 and 2 copies.
+        The "aggressive" option should not be touched in general. Setting to 0 will prevent the program from trimming to exactly 1 copy of the repeat, instead leaving between 1 and 2 copies.
 
-This could also be a useful first step before assembly. More testing needs to be done.
-  </help>
+        This could also be a useful first step before assembly. More testing needs to be done.
+    </help>
 
 </tool>