view red.xml @ 1:18a46265455b draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/red commit d0d15a68ae93d7557efcafaed75be750fec946a4
author iuc
date Thu, 15 Sep 2022 10:07:47 +0000
parents cc02b208f3a4
children db57bc3b57af
line wrap: on
line source

<tool id="red" name="Red" profile="20.01" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@">
    <description>repeat masking</description>
    <macros>
        <token name="@TOOL_VERSION@">2018.09.10</token>
        <token name="@VERSION_SUFFIX@">1</token>
    </macros>
    <requirements>
        <requirement type="package" version="@TOOL_VERSION@">red</requirement>
    </requirements>
    <command detect_errors="exit_code"><![CDATA[
mkdir input output &&

ln -s '${input}' input/genome.fa &&

Red
-gnm input/
-msk output/
-rpt output/
-frm 2
-cor \${GALAXY_SLOTS:-1}
    ]]></command>
    <inputs>
        <param label="Genome sequence to mask" name="input" type="data" format="fasta" />
    </inputs>
    <outputs>
        <data format="fasta" name="masked" from_work_dir="output/genome.msk" />
        <data format="bed" name="bed" from_work_dir="output/genome.bed" />
    </outputs>
    <tests>
        <test>
            <param name="input" value="small.fa" />
            <output name="masked" file="small.msk" />
            <output name="bed" file="small.bed" />
        </test>
    </tests>
    <help><![CDATA[
This is Red (REpeat Detector) designed and developed by Hani Zakaria Girgis, PhD.

An intelligent, rapid, accurate tool for detecting repeats de-novo on the genomic scale.
    ]]></help>
    <citations>
        <citation type="doi">10.1186/s12859-015-0654-5</citation>
    </citations>
</tool>