comparison trtr.xml @ 19:ee55e3a4b53c

Uploaded
author mrvollger
date Fri, 12 Dec 2014 22:46:10 -0500
parents 5c3ec718c26f
children 4e6b9640989f
comparison
equal deleted inserted replaced
18:d5427122db05 19:ee55e3a4b53c
1 <tool id="trtr" name="TRTR">
2 <requirements>
3 <requirement type="package" version="1.0">trtr</requirement>
4 </requirements>
5
6 <description>Trim Reads of Tandem Repeat in a fastq file. </description>
7
8 <command>
9 trtr $input $max_repeat $aggressive > $output
10 </command>
11
12 <inputs>
13 <param format="fastq" name="input" type="data" label="Source file"/>
14 <param name="max_repeat" type="integer" value="10" label="Maximum repeat length" />
15 <param name="aggressive" type="integer" value="1" label="Aggressive? See description."/>
16 </inputs>
17
18 <outputs>
19 <data format="fastq" name="output" />
20 </outputs>
21
22 <tests>
23 <test>
24 <param name="input" value="small.fastq"/>
25 <output name="output" file="smallTrimmed.fastq"/>
26 </test>
27 <test>
28 <param name="input" value="medium.fastq"/>
29 <output name="output" file="mediumTrimmed.fastq"/>
30 </test>
31 </tests>
32
33 <help>
34 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.
35
36 The maximimum repeat length is adjustable (use 1 to trim only homopolymers).
37
38 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.
39
40 This could also be a useful first step before assembly. More testing needs to be done.
41 </help>
42
43 </tool>