| 
0
 | 
     1 <tool id="rna_star" name="RNA STAR" version="2.5.2b-0" profile="17.01">
 | 
| 
 | 
     2     <description>Gapped-read mapper for RNA-seq data</description>
 | 
| 
 | 
     3     <macros>
 | 
| 
 | 
     4         <import>macros.xml</import>
 | 
| 
 | 
     5     </macros>
 | 
| 
 | 
     6     <expand macro="requirements"/>
 | 
| 
 | 
     7     
 | 
| 
 | 
     8     <stdio>
 | 
| 
 | 
     9         <regex match="FATAL error" source="both" level="fatal"/>
 | 
| 
 | 
    10         <regex match="EXITING: FATAL INPUT ERROR:" source="both" level="fatal"/>
 | 
| 
 | 
    11         <regex match="EXITING: fatal error trying to allocate genome arrays, exception thrown: std::bad_alloc" source="both" level="fatal"/>
 | 
| 
 | 
    12         <regex match="\[sam_read1\] missing header\? Abort!" source="both" level="fatal"/>
 | 
| 
 | 
    13     </stdio>
 | 
| 
 | 
    14 
 | 
| 
 | 
    15 <!--
 | 
| 
 | 
    16     important quote (https://groups.google.com/forum/#!topic/rna-star/q4zGzlPgwXY):
 | 
| 
 | 
    17     Hi Gary,
 | 
| 
 | 
    18 
 | 
| 
 | 
    19     if you generate the genome with GTF file, and do not specify the value for  - -sjdbOverhang, it will be set to the default 100.
 | 
| 
 | 
    20     If you want to be able to set arbitrary value of  - -sjdbOverhang on the fly, you have to generate the genome without annotations (GTF) - then you supply both the  - -sjdbOverhang and GTF file at the mapping step.
 | 
| 
 | 
    21 
 | 
| 
 | 
    22     Cheers
 | 
| 
 | 
    23     Alex
 | 
| 
 | 
    24 -->
 | 
| 
 | 
    25     <command><![CDATA[
 | 
| 
 | 
    26     ## Create temporary index for custom reference
 | 
| 
 | 
    27     #if str($refGenomeSource.geneSource) == 'history':
 | 
| 
 | 
    28         mkdir -p tempstargenomedir &&
 | 
| 
 | 
    29         STAR
 | 
| 
 | 
    30             --runMode genomeGenerate
 | 
| 
 | 
    31             --genomeDir 'tempstargenomedir'
 | 
| 
 | 
    32             --genomeFastaFiles '$refGenomeSource.genomeFastaFiles'
 | 
| 
 | 
    33             #if $refGenomeSource.sjdbGTFfile:
 | 
| 
 | 
    34                 --sjdbGTFfile '$refGenomeSource.sjdbGTFfile'
 | 
| 
 | 
    35                 --sjdbOverhang '$refGenomeSource.sjdbOverhang'
 | 
| 
 | 
    36             #end if
 | 
| 
 | 
    37             --runThreadN \${GALAXY_SLOTS:-4}
 | 
| 
 | 
    38         &&
 | 
| 
 | 
    39     #end if
 | 
| 
 | 
    40 
 | 
| 
 | 
    41     STAR
 | 
| 
 | 
    42         --runThreadN \${GALAXY_SLOTS:-4}
 | 
| 
 | 
    43         --genomeLoad NoSharedMemory
 | 
| 
 | 
    44         --genomeDir
 | 
| 
 | 
    45         #if str($refGenomeSource.geneSource) == 'history':
 | 
| 
 | 
    46             'tempstargenomedir'
 | 
| 
 | 
    47             #if $refGenomeSource.sjdbGTFfile:
 | 
| 
 | 
    48                 --sjdbGTFfile '$refGenomeSource.sjdbGTFfile'
 | 
| 
 | 
    49                 --sjdbOverhang '$refGenomeSource.sjdbOverhang'
 | 
| 
 | 
    50             #end if
 | 
| 
 | 
    51         #else
 | 
| 
 | 
    52             '${refGenomeSource.GTFconditional.genomeDir.fields.path}'
 | 
| 
 | 
    53         #end if
 | 
| 
 | 
    54 
 | 
| 
 | 
    55         --readFilesIn
 | 
| 
 | 
    56         #if str($singlePaired.sPaired) == "paired_collection"
 | 
| 
 | 
    57             '$singlePaired.input.forward' '$singlePaired.input.reverse'
 | 
| 
 | 
    58 
 | 
| 
 | 
    59             #if $singlePaired.input.forward.is_of_type("fastq.gz", "fastqsanger.gz"):
 | 
| 
 | 
    60                 @FASTQ_GZ_OPTION@
 | 
| 
 | 
    61             #end if
 | 
| 
 | 
    62         #else
 | 
| 
 | 
    63             '$singlePaired.input1'
 | 
| 
 | 
    64             #if str($singlePaired.sPaired) == "paired"
 | 
| 
 | 
    65                 '$singlePaired.input2'
 | 
| 
 | 
    66             #end if
 | 
| 
 | 
    67 
 | 
| 
 | 
    68             #if $singlePaired.input1.is_of_type("fastq.gz", "fastqsanger.gz"):
 | 
| 
 | 
    69                 @FASTQ_GZ_OPTION@
 | 
| 
 | 
    70             #end if
 | 
| 
 | 
    71         #end if
 | 
| 
 | 
    72 
 | 
| 
 | 
    73         --outSAMtype BAM SortedByCoordinate
 | 
| 
 | 
    74 
 | 
| 
 | 
    75         ## Handle difference between indices with/without annotations
 | 
| 
 | 
    76         #if str($refGenomeSource.geneSource) == 'indexed':
 | 
| 
 | 
    77             #if str($refGenomeSource.GTFconditional.GTFselect) == 'without-gtf':
 | 
| 
 | 
    78                 #if $refGenomeSource.GTFconditional.sjdbGTFfile:
 | 
| 
 | 
    79                     --sjdbOverhang '$refGenomeSource.GTFconditional.sjdbOverhang'
 | 
| 
 | 
    80                     --sjdbGTFfile '${refGenomeSource.GTFconditional.sjdbGTFfile}'
 | 
| 
 | 
    81                     #if str($refGenomeSource.GTFconditional.sjdbGTFfile.ext) == 'gff3':
 | 
| 
 | 
    82                         --sjdbGTFtagExonParentTranscript Parent
 | 
| 
 | 
    83                     #end if
 | 
| 
 | 
    84                 #end if
 | 
| 
 | 
    85             #end if
 | 
| 
 | 
    86         #end if
 | 
| 
 | 
    87 
 | 
| 
 | 
    88         #if $quantMode:
 | 
| 
 | 
    89             --quantMode GeneCounts
 | 
| 
 | 
    90         #end if
 | 
| 
 | 
    91 
 | 
| 
 | 
    92         ## Output parameters
 | 
| 
 | 
    93         #if str( $output_params.output_select ) == "yes":
 | 
| 
 | 
    94             --outSAMattributes $output_params.outSAMattributes
 | 
| 
 | 
    95             --outSAMstrandField $output_params.outSAMstrandField
 | 
| 
 | 
    96             --outFilterIntronMotifs $output_params.outFilterIntronMotifs
 | 
| 
 | 
    97             #if str( $output_params.output_params2.output_select2 ) == "yes":
 | 
| 
 | 
    98                 --outSAMunmapped $output_params.output_params2.outSAMunmapped
 | 
| 
 | 
    99                 --outSAMprimaryFlag $output_params.output_params2.outSAMprimaryFlag
 | 
| 
 | 
   100                 --outSAMmapqUnique "$output_params.output_params2.outSAMmapqUnique"
 | 
| 
 | 
   101                 --outFilterType $output_params.output_params2.outFilterType
 | 
| 
 | 
   102                 --outFilterMultimapScoreRange "$output_params.output_params2.outFilterMultimapScoreRange"
 | 
| 
 | 
   103                 --outFilterMultimapNmax "$output_params.output_params2.outFilterMultimapNmax"
 | 
| 
 | 
   104                 --outFilterMismatchNmax "$output_params.output_params2.outFilterMismatchNmax"
 | 
| 
 | 
   105                 --outFilterMismatchNoverLmax "$output_params.output_params2.outFilterMismatchNoverLmax"
 | 
| 
 | 
   106                 --outFilterMismatchNoverReadLmax "$output_params.output_params2.outFilterMismatchNoverReadLmax"
 | 
| 
 | 
   107                 --outFilterScoreMin "$output_params.output_params2.outFilterScoreMin"
 | 
| 
 | 
   108                 --outFilterScoreMinOverLread "$output_params.output_params2.outFilterScoreMinOverLread"
 | 
| 
 | 
   109                 --outFilterMatchNmin "$output_params.output_params2.outFilterMatchNmin"
 | 
| 
 | 
   110                 --outFilterMatchNminOverLread "$output_params.output_params2.outFilterMatchNminOverLread"
 | 
| 
 | 
   111             #end if
 | 
| 
 | 
   112         #end if
 | 
| 
 | 
   113 
 | 
| 
 | 
   114         ## Other parameters
 | 
| 
 | 
   115         #if str( $params.settingsType ) == "star_fusion":
 | 
| 
 | 
   116             ## Preset parameters for STAR-Fusion
 | 
| 
 | 
   117             --outReadsUnmapped None
 | 
| 
 | 
   118             --chimSegmentMin 12
 | 
| 
 | 
   119             --chimJunctionOverhangMin 12
 | 
| 
 | 
   120             --alignSJDBoverhangMin 10
 | 
| 
 | 
   121             --alignMatesGapMax 200000
 | 
| 
 | 
   122             --alignIntronMax 200000
 | 
| 
 | 
   123 
 | 
| 
 | 
   124             ## --twopass1readsN 100000000  
 | 
| 
 | 
   125             ## --chimSegmentReadGapMax 3              ## not an option in STAR 2.4.0
 | 
| 
 | 
   126             ## --alignSJstitchMismatchNmax 5 -1 5 5   ## not an option in STAR 2.4.0
 | 
| 
 | 
   127 
 | 
| 
 | 
   128         #elif str( $params.settingsType ) == "full":
 | 
| 
 | 
   129             ## Extended parameter options
 | 
| 
 | 
   130 
 | 
| 
 | 
   131             ## Seed parameter options
 | 
| 
 | 
   132             --seedSearchStartLmax "$params.seed.seedSearchStartLmax"
 | 
| 
 | 
   133             --seedSearchStartLmaxOverLread "$params.seed.seedSearchStartLmaxOverLread"
 | 
| 
 | 
   134             --seedSearchLmax "$params.seed.seedSearchLmax"
 | 
| 
 | 
   135             --seedMultimapNmax "$params.seed.seedMultimapNmax"
 | 
| 
 | 
   136             --seedPerReadNmax "$params.seed.seedPerReadNmax"
 | 
| 
 | 
   137             --seedPerWindowNmax "$params.seed.seedPerWindowNmax"
 | 
| 
 | 
   138             --seedNoneLociPerWindow "$params.seed.seedNoneLociPerWindow"
 | 
| 
 | 
   139         
 | 
| 
 | 
   140             ## Alignment parameter options
 | 
| 
 | 
   141             --alignIntronMin "$params.align.alignIntronMin"
 | 
| 
 | 
   142             --alignIntronMax "$params.align.alignIntronMax"
 | 
| 
 | 
   143             --alignMatesGapMax "$params.align.alignMatesGapMax"
 | 
| 
 | 
   144             --alignSJoverhangMin "$params.align.alignSJoverhangMin"
 | 
| 
 | 
   145             --alignSJDBoverhangMin "$params.align.alignSJDBoverhangMin"
 | 
| 
 | 
   146             --alignSplicedMateMapLmin "$params.align.alignSplicedMateMapLmin"
 | 
| 
 | 
   147             --alignSplicedMateMapLminOverLmate "$params.align.alignSplicedMateMapLminOverLmate"
 | 
| 
 | 
   148             --alignWindowsPerReadNmax "$params.align.alignWindowsPerReadNmax"
 | 
| 
 | 
   149             --alignTranscriptsPerWindowNmax "$params.align.alignTranscriptsPerWindowNmax"
 | 
| 
 | 
   150             --alignTranscriptsPerReadNmax "$params.align.alignTranscriptsPerReadNmax"
 | 
| 
 | 
   151             --alignEndsType $params.align.alignEndsType
 | 
| 
 | 
   152 
 | 
| 
 | 
   153             ## Chimeric alignment parameter options
 | 
| 
 | 
   154             #if str( $params.chim.chim_select ) == "yes":
 | 
| 
 | 
   155                 --chimSegmentMin "$params.chim.chimSegmentMin"
 | 
| 
 | 
   156                 --chimScoreMin "$params.chim.chimScoreMin"
 | 
| 
 | 
   157                 --chimScoreDropMax "$params.chim.chimScoreDropMax"
 | 
| 
 | 
   158                 --chimScoreSeparation "$params.chim.chimScoreSeparation"
 | 
| 
 | 
   159                 --chimScoreJunctionNonGTAG "$params.chim.chimScoreJunctionNonGTAG"
 | 
| 
 | 
   160                 --chimJunctionOverhangMin "$params.chim.chimJunctionOverhangMin"
 | 
| 
 | 
   161             #end if
 | 
| 
 | 
   162         #end if
 | 
| 
 | 
   163 
 | 
| 
 | 
   164     ## Convert chimeric reads.
 | 
| 
 | 
   165     #if str($params.settingsType) == "star_fusion" or ( str($params.settingsType) == "full" and str($params.chim.chim_select) == "yes" and int($params.chim.chimSegmentMin) > 0 ):
 | 
| 
 | 
   166         &&
 | 
| 
 | 
   167         samtools view
 | 
| 
 | 
   168             -@ \${GALAXY_SLOTS:-4}
 | 
| 
 | 
   169             -Shb Chimeric.out.sam |
 | 
| 
 | 
   170         
 | 
| 
 | 
   171         samtools sort
 | 
| 
 | 
   172             -@ \${GALAXY_SLOTS:-4} - ChimericSorted
 | 
| 
 | 
   173     #end if
 | 
| 
 | 
   174     ]]></command>
 | 
| 
 | 
   175 
 | 
| 
 | 
   176     <inputs>
 | 
| 
 | 
   177         <!-- FASTQ input(s) and options specifically for paired-end data. -->
 | 
| 
 | 
   178         <conditional name="singlePaired">
 | 
| 
 | 
   179             <param name="sPaired" type="select" label="Single-end or paired-end reads">
 | 
| 
 | 
   180                 <option value="single" selected="true">Single-end</option>
 | 
| 
 | 
   181                 <option value="paired">Paired-end (as individual datasets)</option>
 | 
| 
 | 
   182                 <option value="paired_collection">Paired-end (as collection)</option>
 | 
| 
 | 
   183             </param>
 | 
| 
 | 
   184             <when value="single">
 | 
| 
 | 
   185                 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input1" type="data" label="RNA-Seq FASTQ/FASTA file"/>
 | 
| 
 | 
   186             </when>
 | 
| 
 | 
   187             <when value="paired">
 | 
| 
 | 
   188                 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input1" type="data" label="RNA-Seq FASTQ/FASTA file, forward reads"/>
 | 
| 
 | 
   189                 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input2" type="data" label="RNA-Seq FASTQ/FASTA file, reverse reads"/>
 | 
| 
 | 
   190             </when>
 | 
| 
 | 
   191             <when value="paired_collection">
 | 
| 
 | 
   192                 <param format="fastq,fasta,fastq.gz,fastqsanger.gz" name="input" type="data_collection" collection_type="paired" label="RNA-Seq FASTQ/FASTA paired reads"/>
 | 
| 
 | 
   193             </when>
 | 
| 
 | 
   194         </conditional>
 | 
| 
 | 
   195 
 | 
| 
 | 
   196         <!-- Genome source. -->
 | 
| 
 | 
   197         <conditional name="refGenomeSource">
 | 
| 
 | 
   198             <param name="geneSource" type="select" label="Custom or built-in reference genome" help="Built-ins were indexed using default options">
 | 
| 
 | 
   199                 <option value="indexed" selected="True">Use a built-in index</option>
 | 
| 
 | 
   200                 <option value="history">Use reference genome from history and create temporary index</option>
 | 
| 
 | 
   201             </param>
 | 
| 
 | 
   202             <when value="indexed">
 | 
| 
 | 
   203                 <conditional name="GTFconditional">
 | 
| 
 | 
   204                     <param name="GTFselect" type="select" label="Reference genome with or without an annotation" help="Must the index have been created WITH a GTF file (if not you can specify one afterward).">
 | 
| 
 | 
   205                         <option value="without-gtf">use genome reference without builtin gene-model</option>
 | 
| 
 | 
   206                         <option value="with-gtf">use genome reference with builtin gene-model</option>
 | 
| 
 | 
   207                     </param>
 | 
| 
 | 
   208                     <when value="with-gtf">
 | 
| 
 | 
   209                         <param name="genomeDir" argument="--genomeDir" type="select" label="Select reference genome" help="If your genome of interest is not listed, contact the Galaxy team">
 | 
| 
 | 
   210                             <options from_data_table="rnastar_index2">
 | 
| 
 | 
   211                                 <filter type="static_value" column="4" value="1"/>
 | 
| 
 | 
   212                                 <filter type="sort_by" column="2" />
 | 
| 
 | 
   213                                 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
 | 
| 
 | 
   214                             </options>
 | 
| 
 | 
   215                         </param>
 | 
| 
 | 
   216                     </when>
 | 
| 
 | 
   217                     <when value="without-gtf">
 | 
| 
 | 
   218                         <param argument="--genomeDir" type="select" label="Select reference genome" help="If your genome of interest is not listed, contact the Galaxy team">
 | 
| 
 | 
   219                             <options from_data_table="rnastar_index2">
 | 
| 
 | 
   220                                 <filter type="static_value" column="4" value="0"/>
 | 
| 
 | 
   221                                 <filter type="sort_by" column="2" />
 | 
| 
 | 
   222                                 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
 | 
| 
 | 
   223                             </options>
 | 
| 
 | 
   224                         </param>
 | 
| 
 | 
   225                         
 | 
| 
 | 
   226                         <expand macro="@SJDBOPTIONS@" />
 | 
| 
 | 
   227                     </when>
 | 
| 
 | 
   228                 </conditional>
 | 
| 
 | 
   229             </when>
 | 
| 
 | 
   230             <when value="history">
 | 
| 
 | 
   231                 <param argument="--genomeFastaFiles" type="data" format="fasta" label="Select a reference genome" />
 | 
| 
 | 
   232                 <expand macro="@SJDBOPTIONS@" />
 | 
| 
 | 
   233             </when>
 | 
| 
 | 
   234         </conditional>
 | 
| 
 | 
   235         <param argument="--quantMode" type="boolean" label="Count number of reads per gene" help="column 1: gene ID, column 2: counts for unstranded RNA-seq, column 3: counts for the 1st read strand aligned with RNA , column 4: counts for the 2nd read strand aligned with RNA. This requires either (A) an index that was built with an annotation (GTF or GFF3 file) or (B) having specified an annotation (GTF or GFF3 file above)."/>
 | 
| 
 | 
   236 
 | 
| 
 | 
   237         <!-- Output parameter settings. -->
 | 
| 
 | 
   238         <conditional name="output_params">
 | 
| 
 | 
   239             <param name="output_select" type="select" label="Would you like to set output parameters (formatting and filtering)?">
 | 
| 
 | 
   240                 <option value="no" selected="true">No</option>
 | 
| 
 | 
   241                 <option value="yes">Yes</option>
 | 
| 
 | 
   242             </param>
 | 
| 
 | 
   243             <when value="yes">
 | 
| 
 | 
   244               <param argument="--outSAMattributes" type="select" label="Extra SAM attributes to include" help="See "Extra SAM attributes" below">
 | 
| 
 | 
   245                     <option value="Standard" selected="true">Standard</option>
 | 
| 
 | 
   246                     <option value="All">All</option>
 | 
| 
 | 
   247                     <option value="None">None</option>
 | 
| 
 | 
   248                 </param>
 | 
| 
 | 
   249                 <param argument="--outSAMstrandField" type="select" label="Include strand field flag XS" help="For Cufflinks compatibility with unstranded RNA-seq data, this option is required">
 | 
| 
 | 
   250                     <option value="None" selected="true">No</option>
 | 
| 
 | 
   251                     <option value="intronMotif">Yes -- and reads with inconsistent and/or non-canonical introns are filtered out</option>
 | 
| 
 | 
   252                 </param>
 | 
| 
 | 
   253                 <param argument="--outFilterIntronMotifs" type="select" label="Filter alignments containing non-canonical junctions" help="For Cufflinks compatibility, removing alignments with non-canonical junctions is recommended">
 | 
| 
 | 
   254                     <option value="None" selected="true">No</option>
 | 
| 
 | 
   255                     <option value="RemoveNoncanonical">Remove alignments with non-canonical junctions</option>
 | 
| 
 | 
   256                     <option value="RemoveNoncanonicalUnannotated">Remove alignments with unannotated non-canonical junctions</option>
 | 
| 
 | 
   257                 </param>
 | 
| 
 | 
   258   
 | 
| 
 | 
   259               <!-- Additional output parameter settings. -->
 | 
| 
 | 
   260               <conditional name="output_params2">
 | 
| 
 | 
   261                   <param name="output_select2" type="select" label="Would you like to set additional output parameters (formatting and filtering)?">
 | 
| 
 | 
   262                       <option value="no" selected="true">No</option>
 | 
| 
 | 
   263                       <option value="yes">Yes</option>
 | 
| 
 | 
   264                   </param>
 | 
| 
 | 
   265                   <when value="yes">
 | 
| 
 | 
   266                       <param argument="--outSAMunmapped" type="boolean" truevalue="Within" falsevalue="None" checked="false" label="Would you like unmapped reads included in the SAM?"/>
 | 
| 
 | 
   267                       <param argument="--outSAMprimaryFlag" type="boolean" truevalue="AllBestScore" falsevalue="OneBestScore" checked="false" label="Would you like all alignments with the best score labeled primary?"/>
 | 
| 
 | 
   268                       <param argument="--outSAMmapqUnique" type="integer" value="255" min="0" max="255" label="MAPQ value for unique mappers"/>
 | 
| 
 | 
   269                       <param argument="--outFilterType" type="boolean" truevalue="BySJout" falsevalue="Normal" checked="false" label="Would you like to keep only reads that contain junctions that passed filtering?"/>
 | 
| 
 | 
   270                       <param argument="--outFilterMultimapScoreRange" type="integer" value="1" min="0" label="Score range below the maximum score for multimapping alignments"/>
 | 
| 
 | 
   271                       <param argument="--outFilterMultimapNmax" type="integer" value="10" min="1" label="Maximum number of alignments to output a read's alignment results, plus 1" help="Reads with at least this number of alignments will have no alignments output"/>
 | 
| 
 | 
   272                       <param argument="--outFilterMismatchNmax" type="integer" value="10" min="0" label="Maximum number of mismatches to output an alignment, plus 1" help="Alignments with at least this number of mismatches will not be output"/>
 | 
| 
 | 
   273                       <param argument="--outFilterMismatchNoverLmax" type="float" value="0.3" min="0" max="1" label="Maximum ratio of mismatches to mapped length" help="Alignments with a mismatch ratio of at least this value will not be output"/>
 | 
| 
 | 
   274                       <param argument="--outFilterMismatchNoverReadLmax" type="float" value="1" min="0" max="1" label="Maximum ratio of mismatches to read length" help="Alignments with a mismatch ratio of at least this value will not be output"/>
 | 
| 
 | 
   275                       <param argument="--outFilterScoreMin" type="integer" value="0" min="0" label="Minimum alignment score" help="Alignments must have scores higher than this value to be output"/>
 | 
| 
 | 
   276                       <param argument="--outFilterScoreMinOverLread" type="float" value="0.66" min="0" max="1" label="Minimum alignment score, normalized to read length" help="Alignments must have (normalized) scores higher than this value to be output"/>
 | 
| 
 | 
   277                       <param argument="--outFilterMatchNmin" type="integer" value="0" min="0" label="Minimum number of matched bases" help="Alignments must have the number of matched bases higher than this value to be output"/>
 | 
| 
 | 
   278                       <param argument="--outFilterMatchNminOverLread" type="float" value="0.66" min="0" max="1" label="Minimum number of matched bases, normalized to read length" help="Alignments must have the (normalized) number of matched bases higher than this value to be output"/>
 | 
| 
 | 
   279                   </when>
 | 
| 
 | 
   280                   <when value="no"/>
 | 
| 
 | 
   281               </conditional>
 | 
| 
 | 
   282           </when>
 | 
| 
 | 
   283           <when value="no"/>
 | 
| 
 | 
   284         </conditional>
 | 
| 
 | 
   285 
 | 
| 
 | 
   286         <!-- Other parameter settings. -->
 | 
| 
 | 
   287         <conditional name="params">
 | 
| 
 | 
   288             <param name="settingsType" type="select" label="Other parameters (seed, alignment, and chimeric alignment)">
 | 
| 
 | 
   289                 <option value="default" selected="true">Use Defaults</option>
 | 
| 
 | 
   290                 <option value="star_fusion">Use parameters suggested for STAR-Fusion</option>
 | 
| 
 | 
   291                 <option value="full">Extended parameter list</option>
 | 
| 
 | 
   292             </param>
 | 
| 
 | 
   293             <when value="default"/>
 | 
| 
 | 
   294             <when value="star_fusion"/><!-- Set STAR-fusion parameters automatically -->
 | 
| 
 | 
   295   
 | 
| 
 | 
   296             <when value="full">
 | 
| 
 | 
   297                 <section name="seed" title="Seed parameters" expanded="False">
 | 
| 
 | 
   298                     <param argument="--seedSearchStartLmax" type="integer" min="1" value="50" label="Search start point through the read"/>
 | 
| 
 | 
   299                     <param argument="--seedSearchStartLmaxOverLread" type="float" min="0" value="1.0" label="Search start point through the read, normalized to read length"/>
 | 
| 
 | 
   300                     <param argument="--seedSearchLmax" type="integer" min="0" value="0" label="Maximum length of seeds" help="Default of 0 indicates no maximum length"/>
 | 
| 
 | 
   301                     <param argument="--seedMultimapNmax" type="integer" min="1" value="10000" label="Maximum number of mappings to use a piece in stitching"/>
 | 
| 
 | 
   302                     <param argument="--seedPerReadNmax" type="integer" min="1" value="1000" label="Maximum number of seeds per read"/>
 | 
| 
 | 
   303                     <param argument="--seedPerWindowNmax" type="integer" min="1" value="50" label="Maximum number of seeds per window"/>
 | 
| 
 | 
   304                     <param argument="--seedNoneLociPerWindow" type="integer" min="1" value="10" label="Maximum number of one seed loci per window"/>
 | 
| 
 | 
   305                 </section>
 | 
| 
 | 
   306     
 | 
| 
 | 
   307                 <section name="align" title="Alignment parameters" expanded="False">
 | 
| 
 | 
   308                     <param argument="--alignIntronMin" name="alignIntronMin" type="integer" min="0" value="21" label="Minimum intron size"/>
 | 
| 
 | 
   309                     <param argument="--alignIntronMax" type="integer" min="0" value="0" label="Maximum intron size"/>
 | 
| 
 | 
   310                     <param argument="--alignMatesGapMax" type="integer" min="0" value="0" label="Maximum gap between two mates"/>
 | 
| 
 | 
   311                     <param argument="--alignSJoverhangMin" type="integer" min="1" value="5" label="Minimum overhang for spliced alignments"/>
 | 
| 
 | 
   312                     <param argument="--alignSJDBoverhangMin" type="integer" min="1" value="3" label="Minimum overhang for annotated spliced alignments"/>
 | 
| 
 | 
   313                     <param argument="--alignSplicedMateMapLmin" type="integer" min="0" value="0" label="Minimum mapped length for a read mate that is spliced"/>
 | 
| 
 | 
   314                     <param argument="--alignSplicedMateMapLminOverLmate" type="float" min="0" value="0.66" label="Minimum mapped length for a read mate that is spliced, normalized to mate length"/>
 | 
| 
 | 
   315                     <param argument="--alignWindowsPerReadNmax" type="integer" min="1" value="10000" label="Maximum number of windows per read"/>
 | 
| 
 | 
   316                     <param argument="--alignTranscriptsPerWindowNmax" type="integer" min="1" value="100" label="Maximum number of transcripts per window"/>
 | 
| 
 | 
   317                     <param argument="--alignTranscriptsPerReadNmax" type="integer" min="1" value="10000" label="Maximum number of different alignments per read to consider"/>
 | 
| 
 | 
   318                     <param argument="--alignEndsType" type="boolean" truevalue="EndToEnd" falsevalue="Local" checked="false" label="Use end-to-end read alignments, with no soft-clipping?"/>
 | 
| 
 | 
   319                 </section>
 | 
| 
 | 
   320     
 | 
| 
 | 
   321                 <conditional name="chim">
 | 
| 
 | 
   322                     <param name="chim_select" type="select" label="Would you like to set chimeric alignment parameters?">
 | 
| 
 | 
   323                         <option value="no" selected="true">No</option>
 | 
| 
 | 
   324                         <option value="yes">Yes</option>
 | 
| 
 | 
   325                     </param>
 | 
| 
 | 
   326                     <when value="yes">
 | 
| 
 | 
   327                         <param argument="--chimSegmentMin" type="integer" min="0" value="0" label="Minimum length of chimeric segment" help="For small numbers this will cause large number of chimeric alignments. A value of 12 is commonly used. Default of 0 means no chimeric output">
 | 
| 
 | 
   328                             <validator type="in_range" min="1" message="To get chimeric reads this value needs to be larger than 0"/>
 | 
| 
 | 
   329                         </param>
 | 
| 
 | 
   330                         <param argument="--chimScoreMin" type="integer" min="0" value="0" label="Minimum total (summed) score of chimeric segments"/>
 | 
| 
 | 
   331                         <param argument="--chimScoreDropMax" type="integer" min="0" value="20" label="Maximum difference of chimeric score from read length"/>
 | 
| 
 | 
   332                         <param argument="--chimScoreSeparation" type="integer" min="0" value="10" label="Minimum difference between the best chimeric score and the next one"/>
 | 
| 
 | 
   333                         <param argument="--chimScoreJunctionNonGTAG" type="integer" value="-1" label="Penalty for a non-GT/AG chimeric junction"/>
 | 
| 
 | 
   334                         <param argument="--chimJunctionOverhangMin" type="integer" min="0" value="20" label="Minimum overhang for a chimeric junction"/>
 | 
| 
 | 
   335                     </when>
 | 
| 
 | 
   336                     <when value="no"/>
 | 
| 
 | 
   337                 </conditional>
 | 
| 
 | 
   338             </when>
 | 
| 
 | 
   339         </conditional>
 | 
| 
 | 
   340     </inputs>
 | 
| 
 | 
   341 
 | 
| 
 | 
   342     <outputs>
 | 
| 
 | 
   343         <data format="txt" name="output_log" label="${tool.name} on ${on_string}: log" from_work_dir="Log.final.out"/>
 | 
| 
 | 
   344         <data format="interval" name="chimeric_junctions" label="${tool.name} on ${on_string}: chimeric junctions" from_work_dir="Chimeric.out.junction">
 | 
| 
 | 
   345             <filter>params['settingsType'] == "star_fusion" or ( params['settingsType'] == "full" and params['chim']['chim_select'] == "yes" and params['chim']['chimSegmentMin'] > 0 )</filter>
 | 
| 
 | 
   346             <actions>
 | 
| 
 | 
   347                 <conditional name="refGenomeSource.geneSource">
 | 
| 
 | 
   348                     <when value="indexed">
 | 
| 
 | 
   349                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   350                             <option type="from_data_table" name="rnastar_index" column="1" offset="0">
 | 
| 
 | 
   351                                 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
 | 
| 
 | 
   352                                 <filter type="param_value" ref="refGenomeSource.GTFconditional.genomeDir" column="0"/>
 | 
| 
 | 
   353                             </option>
 | 
| 
 | 
   354                         </action>
 | 
| 
 | 
   355                     </when>
 | 
| 
 | 
   356                     <when value="history">
 | 
| 
 | 
   357                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   358                             <option type="from_param" name="refGenomeSource.genomeFastaFiles" param_attribute="dbkey" />
 | 
| 
 | 
   359                         </action>
 | 
| 
 | 
   360                     </when>
 | 
| 
 | 
   361                 </conditional>
 | 
| 
 | 
   362             </actions>
 | 
| 
 | 
   363         </data>
 | 
| 
 | 
   364 
 | 
| 
 | 
   365         <data format="bam" name="chimeric_reads" label="${tool.name} on ${on_string}: chimeric.bam" from_work_dir="ChimericSorted.bam">
 | 
| 
 | 
   366             <filter>params['settingsType'] == "star_fusion" or ( params['settingsType'] == "full" and params['chim']['chim_select'] == "yes" and params['chim']['chimSegmentMin'] > 0 )</filter>
 | 
| 
 | 
   367             <actions>
 | 
| 
 | 
   368                 <conditional name="refGenomeSource.geneSource">
 | 
| 
 | 
   369                     <when value="indexed">
 | 
| 
 | 
   370                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   371                             <option type="from_data_table" name="rnastar_index" column="1" offset="0">
 | 
| 
 | 
   372                                 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
 | 
| 
 | 
   373                                 <filter type="param_value" ref="refGenomeSource.GTFconditional.genomeDir" column="0"/>
 | 
| 
 | 
   374                             </option>
 | 
| 
 | 
   375                         </action>
 | 
| 
 | 
   376                     </when>
 | 
| 
 | 
   377                     <when value="history">
 | 
| 
 | 
   378                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   379                             <option type="from_param" name="refGenomeSource.genomeFastaFiles" param_attribute="dbkey" />
 | 
| 
 | 
   380                         </action>
 | 
| 
 | 
   381                     </when>
 | 
| 
 | 
   382                 </conditional>
 | 
| 
 | 
   383             </actions>
 | 
| 
 | 
   384         </data>
 | 
| 
 | 
   385 
 | 
| 
 | 
   386         <data format="interval" name="splice_junctions" label="${tool.name} on ${on_string}: splice junctions.bed" from_work_dir="SJ.out.tab">
 | 
| 
 | 
   387             <actions>
 | 
| 
 | 
   388                 <conditional name="refGenomeSource.geneSource">
 | 
| 
 | 
   389                     <when value="indexed">
 | 
| 
 | 
   390                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   391                             <option type="from_data_table" name="rnastar_index" column="1" offset="0">
 | 
| 
 | 
   392                                 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
 | 
| 
 | 
   393                                 <filter type="param_value" ref="refGenomeSource.GTFconditional.genomeDir" column="0"/>
 | 
| 
 | 
   394                             </option>
 | 
| 
 | 
   395                         </action>
 | 
| 
 | 
   396                     </when>
 | 
| 
 | 
   397                     <when value="history">
 | 
| 
 | 
   398                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   399                             <option type="from_param" name="refGenomeSource.genomeFastaFiles" param_attribute="dbkey" />
 | 
| 
 | 
   400                         </action>
 | 
| 
 | 
   401                     </when>
 | 
| 
 | 
   402                 </conditional>
 | 
| 
 | 
   403             </actions>
 | 
| 
 | 
   404         </data>
 | 
| 
 | 
   405 
 | 
| 
 | 
   406         <data name="mapped_reads" format="bam" label="${tool.name} on ${on_string}: mapped.bam" from_work_dir="Aligned.sortedByCoord.out.bam">
 | 
| 
 | 
   407             <actions>
 | 
| 
 | 
   408                 <conditional name="refGenomeSource.geneSource">
 | 
| 
 | 
   409                     <when value="indexed">
 | 
| 
 | 
   410                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   411                             <option type="from_data_table" name="rnastar_index" column="1" offset="0">
 | 
| 
 | 
   412                                 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
 | 
| 
 | 
   413                                 <filter type="param_value" ref="refGenomeSource.GTFconditional.genomeDir" column="0"/>
 | 
| 
 | 
   414                             </option>
 | 
| 
 | 
   415                         </action>
 | 
| 
 | 
   416                     </when>
 | 
| 
 | 
   417                     <when value="history">
 | 
| 
 | 
   418                         <action type="metadata" name="dbkey">
 | 
| 
 | 
   419                             <option type="from_param" name="refGenomeSource.genomeFastaFiles" param_attribute="dbkey" />
 | 
| 
 | 
   420                         </action>
 | 
| 
 | 
   421                     </when>
 | 
| 
 | 
   422                 </conditional>
 | 
| 
 | 
   423             </actions>
 | 
| 
 | 
   424         </data>
 | 
| 
 | 
   425         
 | 
| 
1
 | 
   426         <data name="reads_per_gene" format="tabular" label="${tool.name} on ${on_string}: reads per gene" from_work_dir="ReadsPerGene.out.tab">
 | 
| 
0
 | 
   427             <filter>quantMode is True</filter>
 | 
| 
 | 
   428         </data>
 | 
| 
 | 
   429     </outputs>
 | 
| 
 | 
   430 
 | 
| 
 | 
   431     <tests>
 | 
| 
 | 
   432         <test>
 | 
| 
 | 
   433             <param name="input1" value="tophat_in2.fastqsanger" ftype="fastqsanger" />
 | 
| 
 | 
   434             <param name="geneSource" value="history" />
 | 
| 
 | 
   435             <param name="genomeFastaFiles" value="tophat_test.fa" />
 | 
| 
 | 
   436             <param name="sPaired" value="single" />
 | 
| 
 | 
   437 
 | 
| 
 | 
   438             <param name="output_select" value="yes" />
 | 
| 
 | 
   439             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   440             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   441             <param name="settingsType" value="default" />
 | 
| 
 | 
   442             
 | 
| 
 | 
   443             <output name="output_log" file="rnastar_test.log" compare="diff" lines_diff="12"/>
 | 
| 
 | 
   444             <output name="splice_junctions" file="rnastar_test_splicejunctions.bed"/>
 | 
| 
 | 
   445             <output name="mapped_reads" file="rnastar_test_mapped_reads.bam" compare="sim_size" delta="634" />
 | 
| 
 | 
   446         </test>
 | 
| 
 | 
   447         <test><!-- tests gtf file and GeneCounts mode -->
 | 
| 
 | 
   448             <param name="input1" value="tophat_in2.fastqsanger" ftype="fastqsanger" />
 | 
| 
 | 
   449             <param name="geneSource" value="history" />
 | 
| 
 | 
   450             <param name="genomeFastaFiles" value="tophat_test.fa" />
 | 
| 
 | 
   451 
 | 
| 
 | 
   452             <param name="sjdbOverhang" value="75"/>
 | 
| 
 | 
   453             <param name="sjdbGTFfile" value="test1.gtf" ftype="gtf"/>
 | 
| 
 | 
   454             <param name="quantMode" value="True"/>
 | 
| 
 | 
   455 
 | 
| 
 | 
   456             <param name="sPaired" value="single" />
 | 
| 
 | 
   457             <param name="output_select" value="yes" />
 | 
| 
 | 
   458             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   459             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   460             <param name="settingsType" value="default" />
 | 
| 
 | 
   461             
 | 
| 
 | 
   462             <output name="output_log" file="rnastar_test.log" compare="diff" lines_diff="12"/>
 | 
| 
 | 
   463             <output name="splice_junctions" file="rnastar_test_splicejunctions.bed"/>
 | 
| 
 | 
   464             <output name="mapped_reads" file="rnastar_test_mapped_reads.bam" compare="sim_size" delta="634" />
 | 
| 
 | 
   465             <output name="reads_per_gene" file="tophat_test_reads_per_gene.txt" />
 | 
| 
 | 
   466         </test>
 | 
| 
 | 
   467         <test>
 | 
| 
 | 
   468             <param name="input1" value="tophat_in2.fastqsanger" ftype="fastqsanger" />
 | 
| 
 | 
   469             <param name="geneSource" value="history" />
 | 
| 
 | 
   470             <param name="genomeFastaFiles" value="tophat_test.fa" />
 | 
| 
 | 
   471             <param name="sPaired" value="single" />
 | 
| 
 | 
   472             
 | 
| 
 | 
   473             <param name="output_select" value="yes" />
 | 
| 
 | 
   474             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   475             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   476             <param name="outFilterIntronMotifs" value="RemoveNoncanonical" />
 | 
| 
 | 
   477             
 | 
| 
 | 
   478             <param name="output_select2" value="yes" />
 | 
| 
 | 
   479             <param name="outFilterScoreMinOverLread" value="0.9" />
 | 
| 
 | 
   480             <param name="settingsType" value="full" />
 | 
| 
 | 
   481             <param name="seed_select" value="yes" />
 | 
| 
 | 
   482             <param name="seedSearchStartLmax" value="25" />
 | 
| 
 | 
   483 
 | 
| 
 | 
   484             <output name="output_log" file="rnastar_test2.log" compare="diff" lines_diff="12"/>
 | 
| 
 | 
   485             <output name="splice_junctions" file="rnastar_test2_splicejunctions.bed"/>
 | 
| 
 | 
   486             <output name="mapped_reads" file="rnastar_test2_mapped_reads.bam" compare="sim_size" delta="200" />
 | 
| 
 | 
   487         </test>
 | 
| 
 | 
   488         <test>
 | 
| 
 | 
   489             <param name="input1" value="test3.fastqsanger" ftype="fastqsanger" />
 | 
| 
 | 
   490             <param name="geneSource" value="history" />
 | 
| 
 | 
   491             <param name="genomeFastaFiles" value="test3.ref.fa" />
 | 
| 
 | 
   492             <param name="sPaired" value="single" />
 | 
| 
 | 
   493 
 | 
| 
 | 
   494             <param name="output_select" value="yes" />
 | 
| 
 | 
   495             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   496             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   497             <param name="settingsType" value="star_fusion" />
 | 
| 
 | 
   498 
 | 
| 
 | 
   499             <output name="chimeric_junctions" file="test3.chimjunc.tabular"/>
 | 
| 
 | 
   500         </test>
 | 
| 
 | 
   501         <test><!-- tests fastqsanger.gz -->
 | 
| 
 | 
   502             <param name="input1" value="test3.fastqsanger.gz" ftype="fastqsanger.gz" />
 | 
| 
 | 
   503             <param name="geneSource" value="history" />
 | 
| 
 | 
   504             <param name="genomeFastaFiles" value="test3.ref.fa" />
 | 
| 
 | 
   505             <param name="sPaired" value="single" />
 | 
| 
 | 
   506 
 | 
| 
 | 
   507             <param name="output_select" value="yes" />
 | 
| 
 | 
   508             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   509             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   510             <param name="settingsType" value="star_fusion" />
 | 
| 
 | 
   511 
 | 
| 
 | 
   512             <output name="chimeric_junctions" file="test3.chimjunc.tabular"/>
 | 
| 
 | 
   513         </test>
 | 
| 
 | 
   514         <test>
 | 
| 
 | 
   515             <param name="input1" value="tophat_in2.fastqsanger" ftype="fastqsanger" />
 | 
| 
 | 
   516             <param name="geneSource" value="history" />
 | 
| 
 | 
   517             <param name="genomeFastaFiles" value="tophat_test.fa" />
 | 
| 
 | 
   518             <param name="sPaired" value="single" />
 | 
| 
 | 
   519 
 | 
| 
 | 
   520             <param name="output_select" value="yes" />
 | 
| 
 | 
   521             <param name="outSAMattributes" value="All" />
 | 
| 
 | 
   522             <param name="outSAMstrandField" value="intronMotif" />
 | 
| 
 | 
   523             <param name="outFilterIntronMotifs" value="RemoveNoncanonical" />
 | 
| 
 | 
   524 
 | 
| 
 | 
   525             <param name="output_select2" value="yes" />
 | 
| 
 | 
   526             <param name="settingsType" value="full" />
 | 
| 
 | 
   527             <param name="chim_select" value="false" />
 | 
| 
 | 
   528             
 | 
| 
 | 
   529             <output name="output_log" file="rnastar_test.log" compare="diff" lines_diff="12"/>
 | 
| 
 | 
   530             <output name="splice_junctions" file="rnastar_test_splicejunctions.bed"/>
 | 
| 
 | 
   531             <output name="mapped_reads" file="rnastar_test_mapped_reads.bam" compare="sim_size" delta="634" />
 | 
| 
 | 
   532         </test>
 | 
| 
 | 
   533     </tests>
 | 
| 
 | 
   534     <help>
 | 
| 
 | 
   535 **What it does**
 | 
| 
 | 
   536 
 | 
| 
 | 
   537 STAR is an ultrafast universal RNA-seq aligner.
 | 
| 
 | 
   538 
 | 
| 
 | 
   539 **Extra SAM attributes**
 | 
| 
 | 
   540 
 | 
| 
 | 
   541 The Standard option includes the following four attributes::
 | 
| 
 | 
   542 
 | 
| 
 | 
   543   NH: Number of reported alignments that contain the query in the current record.
 | 
| 
 | 
   544   HI: Query hit index, indicating the alignment record is the i-th one stored in SAM
 | 
| 
 | 
   545   AS: Local alignment score (paired for paired-end reads)
 | 
| 
 | 
   546   nM: Number of mismatches per (paired) alignment
 | 
| 
 | 
   547 
 | 
| 
 | 
   548 The All option includes the Standard attributes, plus the following four::
 | 
| 
 | 
   549 
 | 
| 
 | 
   550   NM: Edit distance to the reference, including ambiguous bases but excluding clipping
 | 
| 
 | 
   551   MD: String for mismatching positions
 | 
| 
 | 
   552   jM: Intron motifs for all junctions
 | 
| 
 | 
   553   jI: Start and end of introns for all junctions
 | 
| 
 | 
   554 
 | 
| 
 | 
   555 **STAR-Fusion**
 | 
| 
 | 
   556 
 | 
| 
 | 
   557 STAR-Fusion_ is used to identify candidate fusion transcripts. The recommended_ parameters for running
 | 
| 
 | 
   558 STAR prior to STAR-Fusion can be pre-selected, with the following exceptions::
 | 
| 
 | 
   559 
 | 
| 
 | 
   560   --twopassMode Basic                   # not an option in STAR 2.4.0
 | 
| 
 | 
   561   --chimSegmentReadGapMax 3             # not an option in STAR 2.4.0
 | 
| 
 | 
   562   --alignSJstitchMismatchNmax 5 -1 5 5  # not an option in STAR 2.4.0
 | 
| 
 | 
   563 
 | 
| 
 | 
   564 **Attributions**
 | 
| 
 | 
   565 
 | 
| 
 | 
   566 rna_star - see the web site at rna_star_
 | 
| 
 | 
   567 
 | 
| 
 | 
   568 For details, please see the rna_starMS_
 | 
| 
 | 
   569 "STAR: ultrafast universal RNA-seq aligner"
 | 
| 
 | 
   570 A. Dobin et al, Bioinformatics 2012; doi: 10.1093/bioinformatics/bts635
 | 
| 
 | 
   571 
 | 
| 
 | 
   572 Galaxy_ (that's what you are using right now!) for gluing everything together
 | 
| 
 | 
   573 
 | 
| 
 | 
   574 Most of the work for this wrapper XML is Jeremy Goecks' original STAR_ wrapper
 | 
| 
 | 
   575 
 | 
| 
 | 
   576 Minor tweaks to output names to suit our downstream purposes, toolshed automated dependencies
 | 
| 
 | 
   577 and odds and ends of other code and documentation comprising this tool was
 | 
| 
 | 
   578 written by Ross Lazarus and that part is licensed_ the same way as other rgenetics artefacts
 | 
| 
 | 
   579 
 | 
| 
 | 
   580 .. _STAR: https://bitbucket.org/jgoecks/jeremys-code/raw/fa1930a689b8e2f6b59cc1706e5ba0ed8ad357be/galaxy/tool-wrappers/star.xml
 | 
| 
 | 
   581 .. _licensed: http://creativecommons.org/licenses/by-nc-nd/3.0/
 | 
| 
 | 
   582 .. _STAR-Fusion: https://github.com/STAR-Fusion/STAR-Fusion
 | 
| 
 | 
   583 .. _recommended: https://github.com/STAR-Fusion/STAR-Fusion/wiki#alternatively-running-star-yourself-and-then-running-star-fusion-using-the-existing-outputs
 | 
| 
 | 
   584 .. _rna_star: https://github.com/alexdobin/STAR
 | 
| 
 | 
   585 .. _rna_starMS: http://bioinformatics.oxfordjournals.org/content/29/1/15.full
 | 
| 
 | 
   586 .. _Galaxy: http://getgalaxy.org
 | 
| 
 | 
   587     </help>
 | 
| 
 | 
   588     <expand macro="citations"/>
 | 
| 
 | 
   589 </tool>
 |