diff SMART/galaxy/CollapseReads.xml @ 31:0ab839023fe4

Uploaded
author m-zytnicki
date Tue, 30 Apr 2013 14:33:21 -0400
parents 94ab73e8a190
children
line wrap: on
line diff
--- a/SMART/galaxy/CollapseReads.xml	Mon Apr 29 03:45:52 2013 -0400
+++ b/SMART/galaxy/CollapseReads.xml	Tue Apr 30 14:33:21 2013 -0400
@@ -1,8 +1,5 @@
 <tool id="collapseReads" name="collapse reads">
-	<description>Merges two genomic features if they have exactly the same genomic coordinates.</description>
-	<requirements>
-		<requirement type="set_environment">PYTHONPATH</requirement>
-	</requirements>
+	<description>Merges two reads if they have exactly the same genomic coordinates.</description>
 	<command interpreter="python">
 		../Java/Python/CollapseReads.py -i $formatType.inputFileName
 		#if $formatType.FormatInputFileName == 'bed':
@@ -52,16 +49,11 @@
 			</when>
 		</conditional>
 
-		<param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="Merges features even if they are on different strands."/>
+		<param name="strand" type="boolean" truevalue="-s" falsevalue="" checked="false" label="Strand option merges 2 different strands[default:False]."/>
 	</inputs>
 
 	<outputs>
 		<data name="outputFileGff" format="gff3"/>
 	</outputs> 
 	
-	<help>
-Merge two input genomic coordinates iff they are exactly the same. If two or more genomic coordinates are merged, the tag **nbElements** is updated accordingly. As a consequence, all the reads which are exactly the same appear as one genomic coordinate.
-
-This is especially useful for short RNA sequencing (where you want to count the number of read per miRNA, siRNA, etc.) or 5' capped short reads.
-	</help>
 </tool>