view tools/mytools/revcompl.xml @ 0:9071e359b9a3

Uploaded
author xuebing
date Fri, 09 Mar 2012 19:37:19 -0500
parents
children
line wrap: on
line source

<tool id="revcompl" name="reverse complement">
  <description>of DNA/RNA sequences</description>
  <command interpreter="python">revcompl.py $input $output $fasta $rna </command>
  <inputs>
    <param name="input" format="txt" type="data" label="Original sequence file"/>
    <param name="fasta" label="Check if input is fasta format" type="boolean" truevalue="fasta" falsevalue="txt" checked="False"/>
    <param name="rna" label="Check if need to output as RNA sequences" type="boolean" truevalue="rna" falsevalue="dna" checked="False"/>
  </inputs>
  <outputs>
    <data format="input" name="output" />
  </outputs>
  <help>

**What it does**

This tool outputs reverse complementary of DNA/RNA sequences in the input file. The input can be fasta format or raw sequences (each line is a sequence).

Degenerate nucleotides are supported. Here is the match table:

A to T/U

C to G

G to C

T/U to A

M to K

W to W

S to S

R to Y

Y to R

N to N

  </help>
</tool>