view find-repeats.xml @ 1:7e6be57de1a0 draft default tip

"planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 57067916cb7b9c5b65c1da59d4bbb846c3e3af2f"
author nml
date Tue, 23 Jun 2020 10:26:42 -0400
parents 7f27672ff880
children
line wrap: on
line source

<tool id="findrepeat" name="Find Repeats" version ="@VERSION@+galaxy1">
  <description>Identify repeat elements using Mummer</description>
  <macros>
    <import>macros.xml</import>
  </macros>
  <expand macro="requirements">
    <requirement type="package" version="3.23">mummer</requirement>
  </expand>
  <command detect_errors="exit_code">
      find-repeats.pl -l $length -p $pid $fasta > $out
  </command>
  <inputs>
    <param name="fasta" type="data"  label="Fasta file" format="fasta"/>
    <param name="length"  label="Minimum length of repeat region" type="integer" value="150"/>
    <param name="pid"   label="Minimum PID of repeat region" type="integer" value="90"/>
  </inputs>
  <outputs>
    <data format="tabular" name="out" />
  </outputs>
  <tests>
    <test>
      <param name="length" value="150"/>
      <param name="pid" value="90"/>
      <param name="fasta" value="find-repeats-input-1.fasta"/>
      <output name="out" file="find-repeats-output-1.tabular"/>
    </test>
  </tests>

  <help>
What it does
============

Searches a fasta reference file for repeats.


Usage
=====

**Parameters**
  - Fasta file:  A fasta reference file to search for repeats.

**Options**
  - Minimum length of repeat region (150).
  - Minimum PID of repeat region (90).
  </help>
  <expand macro="citations">
    <citation type="doi">10.1186/gb-2004-5-2-r12</citation>
  </expand>
</tool>