comparison galaxy-conf/RollingReadLength.xml @ 12:81d5b81fb3c2 draft

Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
author timpalpant
date Wed, 25 Apr 2012 16:53:48 -0400
parents b1952a90d4bf
children 3e477c7e0e73
comparison
equal deleted inserted replaced
11:b1952a90d4bf 12:81d5b81fb3c2
1 <tool id="RollingReadLength" name="Compute read length" version="1.0.0"> 1 <tool id="RollingReadLength" name="Compute mean fragment length" version="1.0.0">
2 <description>from paired-end sequencing reads</description> 2 <description>over each locus</description>
3 <command interpreter="sh">galaxyToolRunner.sh ngs.RollingReadLength -i $input -a ${chromInfo} -o $output</command> 3 <command interpreter="sh">galaxyToolRunner.sh ngs.RollingReadLength -i $input -a ${chromInfo} -o $output</command>
4 <inputs> 4 <inputs>
5 <param format="sam,bam,bed,bedgraph" name="input" type="data" label="Mapped reads" /> 5 <param format="sam,bam,bed,bedgraph" name="input" type="data" label="Mapped reads" />
6 </inputs> 6 </inputs>
7 <outputs> 7 <outputs>
8 <data format="wig" name="output" /> 8 <data format="wig" name="output" />
9 </outputs> 9 </outputs>
10 10
11 <help> 11 <help>
12
13 This tool will compute the mean length of all fragments overlapping a given locus, and can be used to identify sites with exceptionally long or short reads.
14
12 .. class:: warningmark 15 .. class:: warningmark
13 16
14 This tool requires paired-end SAM, BAM, or Bed formatted data. Using single-end data will result in a constant read length. 17 This tool requires paired-end SAM, BAM, Bed, or BedGraph formatted data. Using single-end data will result in a constant read length.
18
15 </help> 19 </help>
16 </tool> 20 </tool>