view data_manager/add_ctat_ref_lib.xml @ 13:abdf6aad584a draft

Uploaded
author trinity_ctat
date Tue, 12 Dec 2017 15:47:25 -0500
parents
children
line wrap: on
line source

<tool id="ctat_genome_ref_lib_data_manager" 
    name="CTAT Genome Reference Library Data Manager" 
    version="1.0.0" tool_type="manage_data">
    <description>Retrieve, and/or Specify the location of, a CTAT Genome Reference Library. 
    </description>
    <requirements>
        <requirement type="package" version="2.7">python</requirement>
    </requirements>
    <command detect_errors="default">
        <![CDATA[
        python $__tool_directory__/add_ctat_ref_lib.py ${download}
            --genome_name "${genome_name}"
            --destination_path "${destination}" 
            --output_filename "${out_file}"
        ]]>
    </command>
    <inputs>
        <param name="download" type="boolean" checked="false"
             truevalue="--download" falsevalue="" label="Need to Download? (yes/no)" />
        <param name="genome_name" type="text" label="Reference Genome name" />
        <param name="destination" type="text" label="Local Destination (full path)" />
    </inputs>
    <outputs>
        <data name="out_file" format="data_manager_json" />
    </outputs>
    <help>
        Retrieve, and/or specify the location of, a CTAT Genome Reference Library.
        When download is true, the file retrieved and processed is https://data.broadinstitute.org/Trinity/CTAT_RESOURCE_LIB/GRCh38_gencode_v26_CTAT_lib_Nov012017.plug-n-play.tar.gz.
        Specify the Full Path of the location where the CTAT Reference Library should be placed.
        You will need approximately 30GB of space for this library.
        If you already have the library, specify the full path of the location where it exists and leave the download box unchecked.
        The Reference Genome name may be left empty if downloading. The name will be used as the selector text of the entry in the data table.
        For more information on CTAT Genome Reference Libraries, see <a http="https://github.com/FusionFilter/FusionFilter/wiki">FusionFilter</a>
    </help>
</tool>