comparison removeRNA.xml @ 0:0475e4175855 draft default tip

planemo upload commit 81ece2551cea27cbd0e718ef5b7a2fe8d4abd071-dirty
author yqiancolumbia
date Mon, 30 Apr 2018 05:25:11 -0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0475e4175855
1 <tool id="removeRNA" name="Remove tags from rRNA">
2 <description>and other repetitive RNA</description>
3 <command interpreter="perl">
4 /home/galaxy/tools/CTK/tagoverlap.pl -v $big -region /home/galaxy/tools/CTK/annotation/genomes/${genome}/annotation/rmsk.RNA.bed $completeOverlap $reverse $keepTagName $keepScore $sepStr $nonRedundant $input $output
5 </command>
6 <inputs>
7 <param name="input" format="bed" type="data" label="Input BED file (.gz files accepted)" />
8 <param name="genome" type="select" label="Genome build name" >
9 <option value="hg19">hg19</option>
10 <option value="mm10">mm10</option>
11 </param>
12 <param name="big" type="boolean" truevalue="-big" falsevalue="" checked="yes" label="Either region or tag file is big" />
13 <param name="completeOverlap" type="boolean" truevalue="--complete-overlap" falsevalue="" checked="yes" label="Requires complete overlap of the tag with the region" />
14 <param name="reverse" type="boolean" truevalue="-r" falsevalue="" checked="yes" label="Reverse mode to print tags without ovrlap with the region" />
15 <param name="keepTagName" type="boolean" truevalue="--keep-tag-name" falsevalue="" checked="yes" label="Keep tag name" />
16 <param name="keepScore" type="boolean" truevalue="--keep-score" falsevalue="" checked="yes" label="Keep tag score" />
17 <param name="sepStr" type="boolean" truevalue="-ss" falsevalue="" checked="no" label="Separate strand" />
18 <param name="nonRedundant" type="boolean" truevalue="--non-redundant" falsevalue="" checked="no" label="Remove duplicate tags in output" />
19 </inputs>
20 <outputs>
21 <data name="output" format="bed" label="Remove tags from rRNA on ${on_string}">
22 </data>
23 </outputs>
24
25 <help>
26
27 .. class:: infomark
28
29 **What this tool does**
30
31 Remove tags from rRNA and other repetitive RNA. The reason we do this is because ribosomal RNA is a contaminant.
32
33 </help>
34 </tool>