view diamond_view.xml @ 7:62c9df8382c2 draft

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/diamond commit b2d290a8b609ebbc7f4b93716370143c41062ad4"
author bgruening
date Tue, 03 Dec 2019 17:40:05 -0500
parents 64be1ac21109
children 54f751e413f4
line wrap: on
line source

<tool id="bg_diamond_view" name="Diamond" version="@VERSION@" profile="19.01">
    <description>generate formatted output from DAA files</description>
    <macros>
        <import>macros.xml</import>
    </macros>
    <expand macro="requirements" />
    <expand macro="stdio" />
    <expand macro="version_command" />
    <command><![CDATA[
    ## need to link because diamont tries to open dataset_xxx.dat.daa
    ln -s '$daa' input.daa &&
    diamond
        view
        --daa input.daa
        @OUTPUT_ARGS@
        @HITFILTER_ARGS@
        $forwardonly
        --compress '0'
    ]]>
    </command>
    <inputs>
        <param argument="--daa" type="data" format="daa" label="input file in DAA format" />
        <expand macro="output_type_macro" />
        <expand macro="hit_filter_macro" />
        <param argument="--forwardonly" type="boolean" truevalue="--forwardonly" falsevalue="" checked="false" label="only show alignments of forward strand" help=""/>
    </inputs>
    <outputs>
        <expand macro="output_macro" />
    </outputs>
    <tests>
        <test>
            <param name="daa" ftype="daa" value="diamond_results.daa" />
            <conditional name="output">
                <param name="outfmt" value="5"/>
            </conditional>
            <conditional name="hit_filter">
                <param name="hit_filter_select" value="max"/>
                <param name="max_target_seqs" value="1" />
            </conditional>
            <output name="blast_tabular" file="diamond_results.xml"/>
        </test>
        <test>
            <param name="daa" ftype="daa" value="diamond_results.daa" />
            <conditional name="output">
                <param name="outfmt" value="6"/>
                <param name="fields" value="qseqid,sseqid,pident,length,mismatch,gapopen,qstart,qend,sstart,send,evalue,bitscore"/>
            </conditional>
            <output name="blast_tabular" file="diamond_results.tabular"/>
        </test>
        <test>
            <param name="daa" ftype="daa" value="diamond_results.daa" />
            <conditional name="output">
                <param name="outfmt" value="101"/>
            </conditional>
            <conditional name="hit_filter">
                <param name="hit_filter_select" value="top"/>
                <param name="max_target_seqs" value="1" />
            </conditional>
            <param name="forwardonly" value="--forwardonly" />
            <output name="blast_tabular" file="diamond_results.sam" lines_diff="2"/>
        </test>
    </tests>

    <help>
<![CDATA[

**What it does**

Converts diamond daa files to multiple other formats.

**Input**

Input data is a daa file.


**Output**

Alignment results in BLAST format (pairwise/tabular), xml, sam, taxonomic (Note the latter does not work with the current diamond version. )

BLAST tables contain the following columns.

Column 	Description
1 	    Query Seq-id (ID of your sequence)
2 	    Subject Seq-id (ID of the database hit)
3 	    Percentage of identical matches
4 	    Alignment length
5 	    Number of mismatches
6 	    Number of gap openings
7 	    Start of alignment in query
8 	    End of alignment in query
9 	    Start of alignment in subject (database hit)
10 	    End of alignment in subject (database hit)
11 	    Expectation value (E-value)
12 	    Bit score
]]>
    </help>
    <expand macro="citations" />
</tool>