view SMART/DiffExpAnal/tophat_parallel_unSQL.xml @ 18:94ab73e8a190

Uploaded
author m-zytnicki
date Mon, 29 Apr 2013 03:20:15 -0400
parents
children
line wrap: on
line source

<tool id="tophat_parallel_unSQL" name="Tophat for Illumina (for DEA in parallel)" version="1.0.0">
    <description>Find splice junctions using RNA-seq data, can have several input RNA-seq data (parallelized).</description>
    <version_command>tophat --version</version_command>
    <requirements>
        <requirement type="package">tophat</requirement>
    </requirements>
    <command interpreter="python">
	    tophat_parallel_unSQL.py
            ## Change this to accommodate the number of threads you have available.
            --num-threads="4"

            ## Provide outputs.
            -o $outputFileName
            ##--junctions-output=$junctions
            ##--hits-output=$accepted_hits

            ## Handle reference file.
            #if $refGenomeSource.genomeSource == "history":
                --own-file=$refGenomeSource.ownFile
            #else:
                --indexes-path="${ filter( lambda x: str( x[0] ) == str( $refGenomeSource.index ), $__app__.tool_data_tables[ 'tophat_indexes' ].get_fields() )[0][-1] }"
            #end if

            ## Are reads single-end or paired?
            --single-paired=$singlePaired.sPaired

            ## First input file always required.
            --input1=$input1

            ## Set params based on whether reads are single-end or paired.
            #if $singlePaired.sPaired == "single":
                --settings=$singlePaired.sParams.sSettingsType
                #if $singlePaired.sParams.sSettingsType == "full":
                    -a $singlePaired.sParams.anchor_length
                    -m $singlePaired.sParams.splice_mismatches
                    -i $singlePaired.sParams.min_intron_length
                    -I $singlePaired.sParams.max_intron_length
                    -F $singlePaired.sParams.junction_filter
                    -g $singlePaired.sParams.max_multihits
                    --min-segment-intron $singlePaired.sParams.min_segment_intron
                    --max-segment-intron $singlePaired.sParams.max_segment_intron
                    --initial-read-mismatches=$singlePaired.sParams.initial_read_mismatches
                    --seg-mismatches=$singlePaired.sParams.seg_mismatches
                    --seg-length=$singlePaired.sParams.seg_length
                    --library-type=$singlePaired.sParams.library_type
                    
                    ## Indel search.
                    #if $singlePaired.sParams.indel_search.allow_indel_search == "Yes":
                        ## --allow-indels
                        --max-insertion-length $singlePaired.sParams.indel_search.max_insertion_length
                        --max-deletion-length $singlePaired.sParams.indel_search.max_deletion_length
                    #else:
                        --no-novel-indels
                    #end if

                    ## Supplying junctions parameters.
                    #if $singlePaired.sParams.own_junctions.use_junctions == "Yes":
                        #if $singlePaired.sParams.own_junctions.gene_model_ann.use_annotations == "Yes":
                            -G $singlePaired.sParams.own_junctions.gene_model_ann.gene_annotation_model
                        #end if
                        #if $singlePaired.sParams.own_junctions.raw_juncs.use_juncs == "Yes":
                            -j $singlePaired.sParams.own_junctions.raw_juncs.raw_juncs
                        #end if
                        ## TODO: No idea why a string cast is necessary, but it is:
                        #if str($singlePaired.sParams.own_junctions.no_novel_juncs) == "Yes":
                            --no-novel-juncs
                        #end if
                    #end if

                    #if $singlePaired.sParams.closure_search.use_search == "Yes":
                        --closure-search
                        --min-closure-exon $singlePaired.sParams.closure_search.min_closure_exon
                        --min-closure-intron $singlePaired.sParams.closure_search.min_closure_intron
                        --max-closure-intron $singlePaired.sParams.closure_search.max_closure_intron
                    #else:
                        --no-closure-search
                    #end if
                    #if $singlePaired.sParams.coverage_search.use_search == "Yes":
                        --coverage-search
                        --min-coverage-intron $singlePaired.sParams.coverage_search.min_coverage_intron
                        --max-coverage-intron $singlePaired.sParams.coverage_search.max_coverage_intron
                    #else:
                        --no-coverage-search
                    #end if
                    ## TODO: No idea why the type conversion is necessary, but it seems to be.
                    #if str($singlePaired.sParams.microexon_search) == "Yes":
                        --microexon-search
                    #end if
                #end if
            #else:
                --input2=$singlePaired.input2
                -r $singlePaired.mate_inner_distance
                --settings=$singlePaired.pParams.pSettingsType
                #if $singlePaired.pParams.pSettingsType == "full":
                    --mate-std-dev=$singlePaired.pParams.mate_std_dev
                    -a $singlePaired.pParams.anchor_length
                    -m $singlePaired.pParams.splice_mismatches
                    -i $singlePaired.pParams.min_intron_length
                    -I $singlePaired.pParams.max_intron_length
                    -F $singlePaired.pParams.junction_filter
                    -g $singlePaired.pParams.max_multihits
                    --min-segment-intron $singlePaired.pParams.min_segment_intron
                    --max-segment-intron $singlePaired.pParams.max_segment_intron
                    --initial-read-mismatches=$singlePaired.pParams.initial_read_mismatches
                    --seg-mismatches=$singlePaired.pParams.seg_mismatches
                    --seg-length=$singlePaired.pParams.seg_length
                    --library-type=$singlePaired.pParams.library_type
                    
                    ## Indel search.
                    #if $singlePaired.pParams.indel_search.allow_indel_search == "Yes":
                        ## --allow-indels
                        --max-insertion-length $singlePaired.pParams.indel_search.max_insertion_length
                        --max-deletion-length $singlePaired.pParams.indel_search.max_deletion_length
                    #else:
                        --no-novel-indels
                    #end if

                    ## Supplying junctions parameters.
                    #if $singlePaired.pParams.own_junctions.use_junctions == "Yes":
                        #if $singlePaired.pParams.own_junctions.gene_model_ann.use_annotations == "Yes":
                            -G $singlePaired.pParams.own_junctions.gene_model_ann.gene_annotation_model
                        #end if
                        #if $singlePaired.pParams.own_junctions.raw_juncs.use_juncs == "Yes":
                            -j $singlePaired.pParams.own_junctions.raw_juncs.raw_juncs
                        #end if
                        ## TODO: No idea why type cast is necessary, but it is:
                        #if str($singlePaired.pParams.own_junctions.no_novel_juncs) == "Yes":
                            --no-novel-juncs
                        #end if
                    #end if

                    #if $singlePaired.pParams.closure_search.use_search == "Yes":
                        --closure-search
                        --min-closure-exon $singlePaired.pParams.closure_search.min_closure_exon
                        --min-closure-intron $singlePaired.pParams.closure_search.min_closure_intron
                        --max-closure-intron $singlePaired.pParams.closure_search.max_closure_intron
                    #else:
                        --no-closure-search
                    #end if 
                    #if $singlePaired.pParams.coverage_search.use_search == "Yes":
                        --coverage-search
                        --min-coverage-intron $singlePaired.pParams.coverage_search.min_coverage_intron
                        --max-coverage-intron $singlePaired.pParams.coverage_search.max_coverage_intron
                    #else:
                        --no-coverage-search
                    #end if
                    ## TODO: No idea why the type conversion is necessary, but it seems to be.
                    #if str ($singlePaired.pParams.microexon_search) == "Yes":
                        --microexon-search
                   #end if
                #end if
            #end if
    	$tar $outputTarFile
    </command>
    <inputs>
        <param format="txt" name="input1" type="data" label="RNA-Seq FASTQ file" help="Please identify a txt input file, which contains a list of fastqsanger files. Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33. " />
        <conditional name="refGenomeSource">
          <param name="genomeSource" type="select" label="Will you select a reference genome from your history or use a built-in index?" help="Built-ins were indexed using default options">
            <option value="indexed">Use a built-in index</option>
            <option value="history">Use one from the history</option>
          </param>
          <when value="indexed">
            <param name="index" type="select" label="Select a reference genome" help="If your genome of interest is not listed, contact the Galaxy team">
              <options from_data_table="tophat_indexes">
                <filter type="sort_by" column="2"/>
                <validator type="no_options" message="No indexes are available for the selected input dataset"/>
              </options>
            </param>
          </when>
          <when value="history">
            <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select the reference genome" />
          </when>  <!-- history -->
        </conditional>  <!-- refGenomeSource -->
        <conditional name="singlePaired">
            <param name="sPaired" type="select" label="Is this library mate-paired?">
              <option value="single">Single-end</option>
              <option value="paired">Paired-end</option>
            </param>
            <when value="single">
              <conditional name="sParams">
                <param name="sSettingsType" type="select" label="TopHat settings to use" help="You can use the default settings or set custom values for any of Tophat's parameters.">
                  <option value="preSet">Use Defaults</option>
                  <option value="full">Full parameter list</option>
                </param>
                <when value="preSet" />
                <!-- Full/advanced params. -->
                <when value="full">
                  <param name="library_type" type="select" label="Library Type" help="TopHat will treat the reads as strand specific. Every read alignment will have an XS attribute tag. Consider supplying library type options below to select the correct RNA-seq protocol.">
                      <option value="fr-unstranded">FR Unstranded</option>
                      <option value="fr-firststrand">FR First Strand</option>
                      <option value="fr-secondstrand">FR Second Strand</option>
                  </param>
                  <param name="anchor_length" type="integer" value="8" label="Anchor length (at least 3)" help="Report junctions spanned by reads with at least this many bases on each side of the junction." />
                  <param name="splice_mismatches" type="integer" value="0" label="Maximum number of mismatches that can appear in the anchor region of spliced alignment" />
                  <param name="min_intron_length" type="integer" value="70" label="The minimum intron length" help="TopHat will ignore donor/acceptor pairs closer than this many bases apart." />
                  <param name="max_intron_length" type="integer" value="500000" label="The maximum intron length" help="When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read." />
                  <conditional name="indel_search">
                      <param name="allow_indel_search" type="select" label="Allow indel search">
                          <option value="Yes">Yes</option>
                          <option value="No">No</option>
                      </param>
                      <when value="No"/>
                      <when value="Yes">
                         <param name="max_insertion_length" type="integer" value="3" label="Max insertion length." help="The maximum insertion length." />
                         <param name="max_deletion_length" type="integer" value="3" label="Max deletion length." help="The maximum deletion length." />
                      </when>
                  </conditional>
                  <param name="junction_filter" type="float" value="0.15" label="Minimum isoform fraction: filter out junctions supported by too few alignments (number of reads divided by average depth of coverage)" help="0.0 to 1.0 (0 to turn off)" />
                  <param name="max_multihits" type="integer" value="40" label="Maximum number of alignments to be allowed" />
                  <param name="min_segment_intron" type="integer" value="50" label="Minimum intron length that may be found during split-segment (default) search" />
                  <param name="max_segment_intron" type="integer" value="500000" label="Maximum intron length that may be found during split-segment (default) search" />
                  <param name="initial_read_mismatches" type="integer" min="0" max="3" value="2" label="Number of mismatches allowed in the initial read mapping" />
                  <param name="seg_mismatches" type="integer" min="0" max="3" value="2" label="Number of mismatches allowed in each segment alignment for reads mapped independently" />
                  <param name="seg_length" type="integer" value="25" label="Minimum length of read segments" />
                  
                  <!-- Options for supplying own junctions. -->
                  <conditional name="own_junctions">
                      <param name="use_junctions" type="select" label="Use Own Junctions">
                        <option value="No">No</option>
                        <option value="Yes">Yes</option>
                      </param>
                      <when value="Yes">
                          <conditional name="gene_model_ann">
                             <param name="use_annotations" type="select" label="Use Gene Annotation Model">
                                <option value="No">No</option>
                                <option value="Yes">Yes</option>
                             </param>
                             <when value="No" />
                             <when value="Yes">
                               <param format="gtf" name="gene_annotation_model" type="data" label="Gene Model Annotations" help="TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping."/>
                             </when>
                          </conditional>
                          <conditional name="raw_juncs">
                             <param name="use_juncs" type="select" label="Use Raw Junctions">
                                <option value="No">No</option>
                                <option value="Yes">Yes</option>
                             </param>
                             <when value="No" />
                             <when value="Yes">
                               <param format="interval" name="raw_juncs" type="data" label="Raw Junctions" help="Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-] left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive."/>
                             </when>
                          </conditional>
                          <param name="no_novel_juncs" type="select" label="Only look for supplied junctions">
                            <option value="No">No</option>
                            <option value="Yes">Yes</option>
                          </param>
                      </when>
                      <when value="No" />
                  </conditional> <!-- /own_junctions -->
                  
                  <!-- Closure search. -->
                  <conditional name="closure_search">
                    <param name="use_search" type="select" label="Use Closure Search">
                      <option value="No">No</option>
                      <option value="Yes">Yes</option>
                    </param>
                    <when value="Yes">
                        <param name="min_closure_exon" type="integer" value="50" label="During closure search for paired end reads, exonic hops in the potential splice graph must be at least this long. The default is 50." />
                        <param name="min_closure_intron" type="integer" value="50" label="Minimum intron length that may be found during closure search" />
                        <param name="max_closure_intron" type="integer" value="5000" label="Maximum intron length that may be found during closure search" />
                    </when>
                    <when value="No" />
                  </conditional>
                  <!-- Coverage search. -->
                  <conditional name="coverage_search">
                    <param name="use_search" type="select" label="Use Coverage Search">
                        <option selected="true" value="Yes">Yes</option>
                        <option value="No">No</option>
                    </param>
                    <when value="Yes">
                        <param name="min_coverage_intron" type="integer" value="50" label="Minimum intron length that may be found during coverage search" />
                        <param name="max_coverage_intron" type="integer" value="20000" label="Maximum intron length that may be found during coverage search" />
                    </when>
                    <when value="No" />
                  </conditional>
                  <param name="microexon_search" type="select" label="Use Microexon Search" help="With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer.">
                    <option value="No">No</option>
                    <option value="Yes">Yes</option>
                  </param>
                </when>  <!-- full -->
              </conditional>  <!-- sParams -->
            </when>  <!--  single -->
            <when value="paired">
              <param format="txt" name="input2" type="data" label="list of RNA-Seq paired end FASTQ file" help="Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33" />
              <param name="mate_inner_distance" type="integer" value="20" label="Mean Inner Distance between Mate Pairs" />
              <conditional name="pParams">
                <param name="pSettingsType" type="select" label="TopHat settings to use" help="For most mapping needs use Commonly used settings. If you want full control use Full parameter list">
                  <option value="preSet">Commonly used</option>
                  <option value="full">Full parameter list</option>
                </param>
                <when value="preSet" />
                <!-- Full/advanced params. -->
                <when value="full">
                    <param name="library_type" type="select" label="Library Type" help="TopHat will treat the reads as strand specific. Every read alignment will have an XS attribute tag. Consider supplying library type options below to select the correct RNA-seq protocol.">
                        <option value="fr-unstranded">FR Unstranded</option>
                        <option value="fr-firststrand">FR First Strand</option>
                        <option value="fr-secondstrand">FR Second Strand</option>
                    </param>
                    <param name="mate_std_dev" type="integer" value="20" label="Std. Dev for Distance between Mate Pairs"  help="The standard deviation for the distribution on inner distances between mate pairs."/>
                  <param name="anchor_length" type="integer" value="8" label="Anchor length (at least 3)" help="Report junctions spanned by reads with at least this many bases on each side of the junction." />
                  <param name="splice_mismatches" type="integer" value="0" label="Maximum number of mismatches that can appear in the anchor region of spliced alignment" />
                  <param name="min_intron_length" type="integer" value="70" label="The minimum intron length" help="TopHat will ignore donor/acceptor pairs closer than this many bases apart." />
                  <param name="max_intron_length" type="integer" value="500000" label="The maximum intron length" help="When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read." />
                  <conditional name="indel_search">
                      <param name="allow_indel_search" type="select" label="Allow indel search">
                          <option value="Yes">Yes</option>
                          <option value="No">No</option>
                      </param>
                      <when value="No"/>
                      <when value="Yes">
                         <param name="max_insertion_length" type="integer" value="3" label="Max insertion length." help="The maximum insertion length." />
                         <param name="max_deletion_length" type="integer" value="3" label="Max deletion length." help="The maximum deletion length." />
                      </when>
                  </conditional>
                  <param name="junction_filter" type="float" value="0.15" label="Minimum isoform fraction: filter out junctions supported by too few alignments (number of reads divided by average depth of coverage)" help="0.0 to 1.0 (0 to turn off)" />
                  <param name="max_multihits" type="integer" value="40" label="Maximum number of alignments to be allowed" />
                  <param name="min_segment_intron" type="integer" value="50" label="Minimum intron length that may be found during split-segment (default) search" />
                  <param name="max_segment_intron" type="integer" value="500000" label="Maximum intron length that may be found during split-segment (default) search" />
                  <param name="initial_read_mismatches" type="integer" min="0" max="3" value="2" label="Number of mismatches allowed in the initial read mapping" />
                  <param name="seg_mismatches" type="integer" min="0" max="3" value="2" label="Number of mismatches allowed in each segment alignment for reads mapped independently" />
                  <param name="seg_length" type="integer" value="25" label="Minimum length of read segments" />
                  <!-- Options for supplying own junctions. -->
                  <conditional name="own_junctions">
                      <param name="use_junctions" type="select" label="Use Own Junctions">
                        <option value="No">No</option>
                        <option value="Yes">Yes</option>
                      </param>
                      <when value="Yes">
                          <conditional name="gene_model_ann">
                             <param name="use_annotations" type="select" label="Use Gene Annotation Model">
                                <option value="No">No</option>
                                <option value="Yes">Yes</option>
                             </param>
                             <when value="No" />
                             <when value="Yes">
                               <param format="gtf" name="gene_annotation_model" type="data" label="Gene Model Annotations" help="TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping."/>
                             </when>
                          </conditional>
                          <conditional name="raw_juncs">
                             <param name="use_juncs" type="select" label="Use Raw Junctions">
                                <option value="No">No</option>
                                <option value="Yes">Yes</option>
                             </param>
                             <when value="No" />
                             <when value="Yes">
                               <param format="interval" name="raw_juncs" type="data" label="Raw Junctions" help="Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-] left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive."/>
                             </when>
                          </conditional>
                          <param name="no_novel_juncs" type="select" label="Only look for supplied junctions">
                            <option value="No">No</option>
                            <option value="Yes">Yes</option>
                          </param>
                      </when>
                      <when value="No" />
                  </conditional> <!-- /own_junctions -->
                  
                  <!-- Closure search. -->
                  <conditional name="closure_search">
                    <param name="use_search" type="select" label="Use Closure Search">
                      <option value="No">No</option>
                      <option value="Yes">Yes</option>
                    </param>
                    <when value="Yes">
                        <param name="min_closure_exon" type="integer" value="50" label="During closure search for paired end reads, exonic hops in the potential splice graph must be at least this long. The default is 50." />
                        <param name="min_closure_intron" type="integer" value="50" label="Minimum intron length that may be found during closure search" />
                        <param name="max_closure_intron" type="integer" value="5000" label="Maximum intron length that may be found during closure search" />
                    </when>
                    <when value="No" />
                  </conditional>
                  <!-- Coverage search. -->
                  <conditional name="coverage_search">
                    <param name="use_search" type="select" label="Use Coverage Search">
                        <option selected="true" value="Yes">Yes</option>
                        <option value="No">No</option>
                    </param>
                    <when value="Yes">
                        <param name="min_coverage_intron" type="integer" value="50" label="Minimum intron length that may be found during coverage search" />
                        <param name="max_coverage_intron" type="integer" value="20000" label="Maximum intron length that may be found during coverage search" />
                    </when>
                    <when value="No" />
                  </conditional>
                  <param name="microexon_search" type="select" label="Use Microexon Search" help="With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer.">
                    <option value="No">No</option>
                    <option value="Yes">Yes</option>
                  </param>
                </when>  <!-- full -->
              </conditional>  <!-- pParams -->
            </when>  <!-- paired -->
        </conditional>
	<param name="tar" type="boolean" truevalue="-t" falsevalue="" checked="false" label="tar option" help="This option creates a tar file for all out results."/>
	</inputs>

    <outputs>
       <!-- <data format="bed" name="insertions" label="${tool.name} on ${on_string}: insertions" from_work_dir="tophat_out/insertions.bed">
            <filter>
                (
                    ( ( 'sParams' in singlePaired ) and ( 'indel_search' in singlePaired['sParams'] ) and 
                      ( singlePaired['sParams']['indel_search']['allow_indel_search'] == 'Yes' ) ) or 
                    ( ( 'pParams' in singlePaired ) and ( 'indel_search' in singlePaired['pParams'] ) and 
                      ( singlePaired['pParams']['indel_search']['allow_indel_search'] == 'Yes' ) )
                )
            </filter>
            <actions>
              <conditional name="refGenomeSource.genomeSource">
                <when value="indexed">
                  <action type="metadata" name="dbkey">
                    <option type="from_data_table" name="tophat_indexes" column="1" offset="0">
                      <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
                      <filter type="param_value" ref="refGenomeSource.index" column="0"/>
                    </option>
                  </action>
                </when>
                <when value="history">
                  <action type="metadata" name="dbkey">
                    <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
                  </action>
                </when>
              </conditional>
            </actions>
        </data>
        <data format="bed" name="deletions" label="${tool.name} on ${on_string}: deletions" from_work_dir="tophat_out/deletions.bed">
            <filter>
                (
                    ( ( 'sParams' in singlePaired ) and ( 'indel_search' in singlePaired['sParams'] ) and 
                      ( singlePaired['sParams']['indel_search']['allow_indel_search'] == 'Yes' ) ) or 
                    ( ( 'pParams' in singlePaired ) and ( 'indel_search' in singlePaired['pParams'] ) and 
                      ( singlePaired['pParams']['indel_search']['allow_indel_search'] == 'Yes' ) )
                )
            </filter>
            <actions>
              <conditional name="refGenomeSource.genomeSource">
                <when value="indexed">
                  <action type="metadata" name="dbkey">
                    <option type="from_data_table" name="tophat_indexes" column="1" offset="0">
                      <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
                      <filter type="param_value" ref="refGenomeSource.index" column="0"/>
                    </option>
                  </action>
                </when>
                <when value="history">
                  <action type="metadata" name="dbkey">
                    <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
                  </action>
                </when>
              </conditional>
            </actions>
        </data>
        <data format="bed" name="junctions" label="${tool.name} on ${on_string}: splice junctions">
            <actions>
              <conditional name="refGenomeSource.genomeSource">
                <when value="indexed">
                  <action type="metadata" name="dbkey">
                    <option type="from_data_table" name="tophat_indexes" column="1" offset="0">
                      <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
                      <filter type="param_value" ref="refGenomeSource.index" column="0"/>
                    </option>
                  </action>
                </when>
                <when value="history">
                  <action type="metadata" name="dbkey">
                    <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
                  </action>
                </when>
              </conditional>
            </actions>
        </data>
        <data format="bam" name="accepted_hits" label="${tool.name} on ${on_string}: accepted_hits">
            <actions>
              <conditional name="refGenomeSource.genomeSource">
                <when value="indexed">
                  <action type="metadata" name="dbkey">
                    <option type="from_data_table" name="tophat_indexes" column="1" offset="0">
                      <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
                      <filter type="param_value" ref="refGenomeSource.index" column="0"/>
                    </option>
                  </action>
                </when>
                <when value="history">
                  <action type="metadata" name="dbkey">
                    <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
                  </action>
                </when>
              </conditional>
            </actions>
        </data> -->
        <data name="outputFileName" format="txt" label="[tophat_parallel] txt File"/>
	<data name="outputTarFile" format="tar">
		<filter>tar</filter>
	</data>
    </outputs>

 

    <help>
**Tophat Overview**

TopHat_ is a fast splice junction mapper for RNA-Seq reads. It aligns RNA-Seq reads to mammalian-sized genomes using the ultra high-throughput short read aligner Bowtie, and then analyzes the mapping results to identify splice junctions between exons. Please cite: Trapnell, C., Pachter, L. and Salzberg, S.L. TopHat: discovering splice junctions with RNA-Seq. Bioinformatics 25, 1105-1111 (2009).        

.. _Tophat: http://tophat.cbcb.umd.edu/
        
------

**Know what you are doing**

.. class:: warningmark

There is no such thing (yet) as an automated gearshift in splice junction identification. It is all like stick-shift driving in San Francisco. In other words, running this tool with default parameters will probably not give you meaningful results. A way to deal with this is to **understand** the parameters by carefully reading the `documentation`__ and experimenting. Fortunately, Galaxy makes experimenting easy.

.. __: http://tophat.cbcb.umd.edu/manual.html

------

**Input formats**

Tophat accepts files in Sanger FASTQ format. Use the FASTQ Groomer to prepare your files.

------

**Outputs**

Tophat produces two output files:

- junctions -- A UCSC BED_ track of junctions reported by TopHat. Each junction consists of two connected BED blocks, where each block is as long as the maximal overhang of any read spanning the junction. The score is the number of alignments spanning the junction.
- accepted_hits -- A list of read alignments in BAM_ format.

.. _BED: http://genome.ucsc.edu/FAQ/FAQformat.html#format1
.. _BAM: http://samtools.sourceforge.net/

Two other possible outputs, depending on the options you choose, are insertions and deletions, both of which are in BED format.

-------

**Tophat settings**

All of the options have a default value. You can change any of them. Some of the options in Tophat have been implemented here.

------

**Tophat parameter list**

This is a list of implemented Tophat options::

  -r                                This is the expected (mean) inner distance between mate pairs. For, example, for paired end runs with fragments 
                                    selected at 300bp, where each end is 50bp, you should set -r to be 200. There is no default, and this parameter 
                                    is required for paired end runs.
  --mate-std-dev INT                The standard deviation for the distribution on inner distances between mate pairs. The default is 20bp.
  -a/--min-anchor-length INT        The "anchor length". TopHat will report junctions spanned by reads with at least this many bases on each side of the junction. Note that individual spliced     
                                    alignments may span a junction with fewer than this many bases on one side. However, every junction involved in spliced alignments is supported by at least one 
                                    read with this many bases on each side. This must be at least 3 and the default is 8.
  -m/--splice-mismatches INT        The maximum number of mismatches that may appear in the "anchor" region of a spliced alignment. The default is 0.
  -i/--min-intron-length INT        The minimum intron length. TopHat will ignore donor/acceptor pairs closer than this many bases apart. The default is 70.
  -I/--max-intron-length INT        The maximum intron length. When searching for junctions ab initio, TopHat will ignore donor/acceptor pairs farther than this many bases apart, except when such a pair is supported by a split segment alignment of a long read. The default is 500000.
  -F/--min-isoform-fraction 0.0-1.0 TopHat filters out junctions supported by too few alignments. Suppose a junction spanning two exons, is supported by S reads. Let the average depth of coverage of 
                                    exon A be D, and assume that it is higher than B. If S / D is less than the minimum isoform fraction, the junction is not reported. A value of zero disables the 
                                    filter. The default is 0.15.
  -g/--max-multihits INT            Instructs TopHat to allow up to this many alignments to the reference for a given read, and suppresses all alignments for reads with more than this many 
                                    alignments. The default is 40.
  -G/--GTF [GTF 2.2 file]           Supply TopHat with a list of gene model annotations. TopHat will use the exon records in this file to build a set of known splice junctions for each gene, and will attempt to align reads to these junctions even if they would not normally be covered by the initial mapping.
  -j/--raw-juncs [juncs file]       Supply TopHat with a list of raw junctions. Junctions are specified one per line, in a tab-delimited format. Records look like: [chrom] [left] [right] [+/-], left and right are zero-based coordinates, and specify the last character of the left sequenced to be spliced to the first character of the right sequence, inclusive.
  -no-novel-juncs                   Only look for junctions indicated in the supplied GFF file. (ignored without -G)
  --no-closure-search               Disables the mate pair closure-based search for junctions. Currently, has no effect - closure search is off by default.
  --closure-search                  Enables the mate pair closure-based search for junctions. Closure-based search should only be used when the expected inner distance between mates is small (about or less than 50bp)
  --no-coverage-search              Disables the coverage based search for junctions.
  --coverage-search                 Enables the coverage based search for junctions. Use when coverage search is disabled by default (such as for reads 75bp or longer), for maximum sensitivity.
  --microexon-search                With this option, the pipeline will attempt to find alignments incident to microexons. Works only for reads 50bp or longer.
  --butterfly-search                TopHat will use a slower but potentially more sensitive algorithm to find junctions in addition to its standard search. Consider using this if you expect that your experiment produced a lot of reads from pre-mRNA, that fall within the introns of your transcripts.
  --segment-mismatches              Read segments are mapped independently, allowing up to this many mismatches in each segment alignment. The default is 2.
  --segment-length                  Each read is cut up into segments, each at least this long. These segments are mapped independently. The default is 25.
  --min-closure-exon                During closure search for paired end reads, exonic hops in the potential splice graph must be at least this long. The default is 50.
  --min-closure-intron              The minimum intron length that may be found during closure search. The default is 50.
  --max-closure-intron              The maximum intron length that may be found during closure search. The default is 5000.
  --min-coverage-intron             The minimum intron length that may be found during coverage search. The default is 50.
  --max-coverage-intron             The maximum intron length that may be found during coverage search. The default is 20000.
  --min-segment-intron              The minimum intron length that may be found during split-segment search. The default is 50.
  --max-segment-intron              The maximum intron length that may be found during split-segment search. The default is 500000.
    </help>
</tool>