view example1/example1.xml @ 0:f062db22587a draft

Uploaded example_1 try 1
author boris
date Wed, 02 Dec 2015 21:14:04 -0500
parents
children
line wrap: on
line source

<tool id="formatfasta" name="Adjust fasta line length" version="0.0.1" force_history_refresh="True">
  
  <description>Change the number of nucleotides per line in the input fasta </description>
  
  <command interpreter="python"> example1.py "${infasta}" $linesize $formatted_fasta </command>
  
  <inputs>
    <param name="infasta" format="fasta" type="data" label="input fasta" help="no help"/>
    <param name="linesize" type="integer" value="50" label="number of nt per line" help=" be reasonable!"/>
  </inputs>

  <outputs>
    <data name="formatted_fasta" format="fasta" label="${tool.name} on ${on_string}: formatted fasta"/>
  </outputs>

  <tests>
    <test>
      <param name="infasta" value="mouse_reference_mtDNA.fasta"/>
      <param name="linesize" value="200"/>
      <output name="formatted_fasta" file="adjusted_200_mouse_reference_mtDNA.fasta"/>
    </test>
  </tests>

  <help>
    
<![CDATA[
Short description.

-----

.. class:: infomark

**What it does**

Longer description. 

-----

.. class:: warningmark

**Note**

Some warining, if needed:

-----

.. class:: infomark

**Formats**

**FASTA multiple alignment** 

See http://www.bioperl.org/wiki/FASTA_multiple_alignment_format

-----

**Example**




-----

**Citation**

(boris-at-bx.psu.edu) ]]>

  </help>
</tool>