view rnacommender.xml @ 1:21130153e729 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/rna_commander/tools/rna_tools/rna_commender commit d5a6f8df417e899092599e956e8033d502bea3c8
author rnateam
date Tue, 19 Jul 2016 07:20:29 -0400
parents 8918de535391
children 55ff4f15adc0
line wrap: on
line source

<tool id="rbc_rnacommender" name="RNAcommender" version="0.1.1">
    <description>files into a collection</description>
    <requirements>
        <requirement type="package" version="3.5">sam</requirement>
        <requirement type="package" version="1.11.1">numpy</requirement>
        <requirement type="package" version="0.18.1">pandas</requirement>
        <requirement type="package" version="0.24">cython</requirement>
        <requirement type="package" version="1.10.0">six</requirement>
        <requirement type="package" version="3.2.2">pytables</requirement>
        <requirement type="package" version="0.7.0">theano</requirement>
        <requirement type="package" version="2.10.0">requests</requirement>

    </requirements>
    <command detect_errors="aggressive">
    <![CDATA[
        sh $__tool_directory__/init.sh &&
        python $__tool_directory__/main.py "$infile"
    ]]></command>
    <inputs>
        <param name="infile" type="data" format="fasta" label="Fasta file to split"/>
    </inputs>
    <outputs>
        <data format="tabular" from_work_dir="output.txt" name="outfile" />
    </outputs>
    <tests>
        <test>
            <param name="infile" value="sample.fa" />
            <output name="outfile">
                <assert_contents>
                    <has_text_matching expression="RBP\ttarget\ty_hat"/>
                </assert_contents>
            </output>
        </test>
    </tests>
    <help><![CDATA[
        RNAcommender 0.1.0 (GALAXY version).
        In order to get the prediction for one (or more) RBPs, insert one fasta file with the protein sequences. The output will contain a ranked list of targets for ALL the proteins in the input file.
        RNAcommender full package is available at https://github.com/gianlucacorrado/RNAcommender.
    ]]></help>
    <citations>
        <citation type="bibtex">
            @ARTICLE{corrado2016rnacommender,
                Author = {Gianluca Corrado, Toma Tebaldi, Fabrizio Costa, Paolo Frasconi and Andrea Passerini},
                keywords = {machine learning, bioinformatics, post-trainscriptional regulation, gene expression},
                title = {{RNAcommender: genome-wide recommendation of RNA-protein interactions.}},
                url = {https://github.com/gianlucacorrado/RNAcommender}
            }
        </citation>
    </citations>
</tool>