view preprocessing.xml @ 8:a04e93fdb40a draft

planemo upload for repository https://github.com/eteriSokhoyan/galaxytools/tree/branchForIterations/tools/GraphClust commit 9a3dc91fa984be18fabc0d968360634d787c9589
author rnateam
date Wed, 24 May 2017 09:57:18 -0400
parents 07ad2d77f28a
children 16bcaef3dc1e
line wrap: on
line source

<tool id="preproc" name="Preprocessing" version="0.2">
  <requirements>
    <requirement type="package" version="0.1.12">graphclust-wrappers</requirement>
  </requirements>
    <stdio>
        <exit_code range="1:" />
    </stdio>
    <command>
		<![CDATA[
        preprocessing.pl
            '$fastaFile'
            $max_length
            $in_winShift
            $min_seq_length

        #if $SHAPEdata:
            &&
            python '$__tool_directory__/splitSHAPE.py' 
                '$SHAPEdata'
                $max_length
        #end if
]]>
	</command>
    <inputs>
        <param type="data" name="fastaFile" format="fasta" />
        <param type="data" name="SHAPEdata" format="txt" optional="true" label="SHAPE data"/>
        <param name="max_length" type="integer" value="10000" size="5" label="window size"/>
        <param name="in_winShift" type="integer" value="100" size="5" label="window shift in percent"/>
        <param name="min_seq_length" type="integer" value="5" size="5" label="minimum sequence length"/>
    </inputs>
    <outputs>
        <data name="data.fasta" format="fasta" from_work_dir="FASTA/data.fasta" label="data.fasta"/>
        <data name="data.map" format="txt" from_work_dir="FASTA/data.map" label="data.map"/>
        <data name="data.names" format="txt" from_work_dir="FASTA/data.names" label="data.names"/>
        <data name="data.fasta.scan" format="fasta" from_work_dir="FASTA/data.fasta.scan" label="data.fasta.scan"/>
        <data name="FASTA" format="zip" from_work_dir="FASTA.zip" label="FASTA.ZIP"/>
        <data name="shape_data_split" format="txt" from_work_dir="shape_data_split.react" label="SHAPE data splited"/>
    </outputs>
    <tests>
        <test>
            <param name="fastaFile" value="input.fa"/>
            <param name="max_length" value="10000"/>
            <param name="in_winShift" value="100"/>
            <param name="min_seq_length" value="5"/>
            <output name="data.fasta" file="FASTA/data.fasta"/>
            <output name="data.map" file="FASTA/data.map" />
            <output name="data.names" file="FASTA/data.names"/>
            <output name="data.fasta.scan" file="FASTA/data.fasta.scan" />
        </test>

        <test>
            <param name="fastaFile" value="sample_3.fa"/>
            <param name="SHAPEdata" value="sample_3.react"/>
            <param name="max_length" value="100"/>
            <param name="in_winShift" value="50"/>
            <param name="min_seq_length" value="5"/>
            <output name="shape_data_split" file="sample_3_shape_data_split.react" />
        </test>        
    </tests>
    <help>
<![CDATA[

**What it does**

The tool takes as input a set of sequences in Fasta format and creates the final input for GraphCLust based on given parameters.

**Parameters**

+ **window size** : All input sequences are splitted into fragments of this length.
  The shift of the sliding window can be defined via option *window shift in percent*.
  This paramter reflects the expected length of signals to be found.
  Slightly larger windows are usually ok. Too small windows can disturb existing signals.


+ **window shift in percent** : Relative window size in % for window shift during input preprocessing.
  Please note that a small shift results in much more fragments for clustering. The benefit is that RNA
  motifs/structures are not destroyed by arbitrary split points. Smaller
  shifts usually increase the cluster quality. Too small shifts (<20) are not
  recommended as a dense center is "polluted" by overlapping fragments and
  no other occurences in the dataset can be found.


+ **minimum sequence length** : Minimal length of input sequences.
  Every input sequence below that length is ignored completely during clustering.

    ]]></help>
    <citations>
        <citation type="doi">10.1093/bioinformatics/bts224</citation>
    </citations>
</tool>