annotate rgrnastar/rg_rnaStar.xml @ 11:94c94e25d61c draft

Uploaded
author fubar
date Mon, 12 Aug 2013 05:18:07 -0400
parents 1ce3d6f45fbc
children f81bf1f1d924
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
1 <tool id="rna_star" name="RNA-STAR" version="0.22">
4
fubar
parents:
diff changeset
2 <description>Gapped-read mapper for RNA-seq data</description>
fubar
parents:
diff changeset
3 <requirements>
fubar
parents:
diff changeset
4 <requirement type="package" version="2.3.0e">rnastar</requirement>
fubar
parents:
diff changeset
5 <requirement type="package">samtools</requirement>
fubar
parents:
diff changeset
6 </requirements>
fubar
parents:
diff changeset
7 <command>
fubar
parents:
diff changeset
8 ##
fubar
parents:
diff changeset
9 ## Run STAR.
fubar
parents:
diff changeset
10 ##
fubar
parents:
diff changeset
11
fubar
parents:
diff changeset
12 STAR
fubar
parents:
diff changeset
13 ## Can adjust this as appropriate for the system.
fubar
parents:
diff changeset
14 --genomeLoad NoSharedMemory
fubar
parents:
diff changeset
15
fubar
parents:
diff changeset
16 --genomeDir ${refGenomeSource.index.fields.path}
fubar
parents:
diff changeset
17 --readFilesIn $input1
fubar
parents:
diff changeset
18 #if $singlePaired.sPaired == "paired"
fubar
parents:
diff changeset
19 $singlePaired.input2
fubar
parents:
diff changeset
20 #end if
fubar
parents:
diff changeset
21
fubar
parents:
diff changeset
22 --runThreadN 4
fubar
parents:
diff changeset
23
fubar
parents:
diff changeset
24 ## Parameters.
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
25 --outSAMattributes "$outSAMattributes"
4
fubar
parents:
diff changeset
26 #if $params.settingsType == "full":
fubar
parents:
diff changeset
27 --chimSegmentMin $params.chim_segment_min
fubar
parents:
diff changeset
28 --chimScoreMin $params.chim_score_min
fubar
parents:
diff changeset
29 #end if
fubar
parents:
diff changeset
30
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
31 ## may or may not need to generate SAM tags and handle non-canonicals for Cufflinks tools.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
32 ${outSAMstrandField} $outFilterIntronMotifs}
4
fubar
parents:
diff changeset
33
fubar
parents:
diff changeset
34 ;
fubar
parents:
diff changeset
35
fubar
parents:
diff changeset
36 ##
fubar
parents:
diff changeset
37 ## BAM conversion.
fubar
parents:
diff changeset
38 ##
fubar
parents:
diff changeset
39
fubar
parents:
diff changeset
40 ## Convert aligned reads.
fubar
parents:
diff changeset
41 samtools view -Shb Aligned.out.sam | samtools sort - Aligned.out
fubar
parents:
diff changeset
42
fubar
parents:
diff changeset
43 ## Convert chimeric reads.
fubar
parents:
diff changeset
44 #if $params.settingsType == "full" and $params.chim_segment_min > 0:
fubar
parents:
diff changeset
45 ; samtools view -Shb Chimeric.out.sam | samtools sort - Chimeric.out
fubar
parents:
diff changeset
46 #end if
fubar
parents:
diff changeset
47 </command>
fubar
parents:
diff changeset
48
fubar
parents:
diff changeset
49 <stdio>
fubar
parents:
diff changeset
50 <regex match=".*" source="both" level="warning" description="generic stdout/err chatter"/>
fubar
parents:
diff changeset
51 </stdio>
fubar
parents:
diff changeset
52
fubar
parents:
diff changeset
53 <inputs>
fubar
parents:
diff changeset
54 <param name="jobName" type="text" size="120" value="rna-star run" label="Job narrative (added to output names)"
fubar
parents:
diff changeset
55 help="Only letters, numbers and underscores (_) will be retained in this field">
fubar
parents:
diff changeset
56 <sanitizer invalid_char="">
fubar
parents:
diff changeset
57 <valid initial="string.letters,string.digits"><add value="_" /> </valid>
fubar
parents:
diff changeset
58 </sanitizer>
fubar
parents:
diff changeset
59 </param>
fubar
parents:
diff changeset
60 <!-- FASTQ input(s) and options specifically for paired-end data. -->
fubar
parents:
diff changeset
61 <conditional name="singlePaired">
fubar
parents:
diff changeset
62 <param name="sPaired" type="select" label="Single ended or mate-pair ended reads in this library?">
fubar
parents:
diff changeset
63 <option value="single" selected="true">Single-end</option>
fubar
parents:
diff changeset
64 <option value="paired">Paired-end</option>
fubar
parents:
diff changeset
65 </param>
fubar
parents:
diff changeset
66 <when value="single">
fubar
parents:
diff changeset
67 <param format="fastqsanger,fastq,fasta" name="input1" type="data" label="RNA-Seq FASTQ file" help="Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33"/>
fubar
parents:
diff changeset
68 </when>
fubar
parents:
diff changeset
69 <when value="paired">
fubar
parents:
diff changeset
70 <param format="fastqsanger,fastq,fasta" name="input1" type="data" label="RNA-Seq FASTQ file, forward reads" help="Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33" />
fubar
parents:
diff changeset
71 <param format="fastqsanger,fastq,fasta" name="input2" type="data" label="RNA-Seq FASTQ file, reverse reads" help="Nucleotide-space: Must have Sanger-scaled quality values with ASCII offset 33" />
fubar
parents:
diff changeset
72 </when>
fubar
parents:
diff changeset
73 </conditional>
fubar
parents:
diff changeset
74
fubar
parents:
diff changeset
75 <!-- Genome source. -->
fubar
parents:
diff changeset
76 <conditional name="refGenomeSource">
fubar
parents:
diff changeset
77 <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">
fubar
parents:
diff changeset
78 <option value="indexed">Use a built-in index</option>
fubar
parents:
diff changeset
79 <option value="history">Use one from the history</option>
fubar
parents:
diff changeset
80 </param>
fubar
parents:
diff changeset
81 <when value="indexed">
fubar
parents:
diff changeset
82 <param name="index" type="select" label="Select a reference genome">
fubar
parents:
diff changeset
83 <options from_data_table="rnastar_indexes">
fubar
parents:
diff changeset
84 <filter type="sort_by" column="2"/>
fubar
parents:
diff changeset
85 <validator type="no_options" message="No indexes are available for the selected input dataset"/>
fubar
parents:
diff changeset
86 </options>
fubar
parents:
diff changeset
87 </param>
fubar
parents:
diff changeset
88 </when>
fubar
parents:
diff changeset
89 <when value="history">
fubar
parents:
diff changeset
90 <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select the reference genome" />
fubar
parents:
diff changeset
91 </when>
fubar
parents:
diff changeset
92 </conditional>
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
93 <param name="outSAMattributes" type="select" label="Include extra sam attributes for downstream processing">
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
94 <option value="Standard">Standard - eg for old Samtools downstream</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
95 <option value="All" selected="true">All modern Samtools attributes - see below</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
96 </param>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
97 <param name="outSAMstrandField" type="select" label="Include extra sam attributes for downstream processing">
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
98 <option value="--outSAMstrandField intronMotif" selected="true">Add XS for cufflinks</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
99 <option value="">No XS added to sam output</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
100 </param>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
101 <param name="outFilterIntronMotifs" type="select" label="Canonical junction preparation for unstranded data">
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
102 <option value="">No special handling - all non-canonical junctions passed through</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
103 <option value="--outFilterIntronMotifs RemoveNoncanonical" selected="true">Remove all non-canonical junctions for eg cufflinks</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
104 <option value="--outFilterIntronMotifs RemoveNoncanonicalUnannotated">Remove only unannotated non-canonical junctions for eg cufflinks</option>
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
105 </param>
4
fubar
parents:
diff changeset
106 <!-- Parameter settings. -->
fubar
parents:
diff changeset
107 <conditional name="params">
fubar
parents:
diff changeset
108 <param name="settingsType" type="select" label="Settings to use" help="You can use the default settings or set custom values for any STAR parameter.">
fubar
parents:
diff changeset
109 <option value="preSet" selected="true">Use Defaults</option>
fubar
parents:
diff changeset
110 <option value="full">Full parameter list</option>
fubar
parents:
diff changeset
111 </param>
fubar
parents:
diff changeset
112 <when value="preSet" />
fubar
parents:
diff changeset
113 <!-- Full/advanced params. -->
fubar
parents:
diff changeset
114 <when value="full">
fubar
parents:
diff changeset
115 <param name="chim_segment_min" type="integer" min="0" value="0" label="Minimum chimeric segment length" />
fubar
parents:
diff changeset
116 <param name="chim_score_min" type="integer" min="0" value="0" label="Minimum total (summed) score of the chimeric segments" />
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
117
4
fubar
parents:
diff changeset
118 </when>
fubar
parents:
diff changeset
119 </conditional>
fubar
parents:
diff changeset
120 </inputs>
fubar
parents:
diff changeset
121
fubar
parents:
diff changeset
122 <outputs>
5
fubar
parents: 4
diff changeset
123 <data format="txt" name="output_log" label="${on_string}_${jobName}_starchimjunc.bed" from_work_dir="Chimeric.out.junction">
4
fubar
parents:
diff changeset
124 <filter>(params['settingsType'] == 'full' and params['chim_segment_min'] > 0)</filter>
fubar
parents:
diff changeset
125 <actions>
fubar
parents:
diff changeset
126 <conditional name="refGenomeSource.genomeSource">
fubar
parents:
diff changeset
127 <when value="indexed">
fubar
parents:
diff changeset
128 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
129 <option type="from_data_table" name="star_indexes" column="1" offset="0">
fubar
parents:
diff changeset
130 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
fubar
parents:
diff changeset
131 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
fubar
parents:
diff changeset
132 </option>
fubar
parents:
diff changeset
133 </action>
fubar
parents:
diff changeset
134 </when>
fubar
parents:
diff changeset
135 <when value="history">
fubar
parents:
diff changeset
136 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
137 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
fubar
parents:
diff changeset
138 </action>
fubar
parents:
diff changeset
139 </when>
fubar
parents:
diff changeset
140 </conditional>
fubar
parents:
diff changeset
141 </actions>
fubar
parents:
diff changeset
142 </data>
5
fubar
parents: 4
diff changeset
143 <data format="bam" name="chimeric_reads" label="${on_string}_${jobName}_starmappedchim.bam"
4
fubar
parents:
diff changeset
144 from_work_dir="Chimeric.out.bam">
fubar
parents:
diff changeset
145 <filter>(params['settingsType'] == 'full' and params['chim_segment_min'] > 0)</filter>
fubar
parents:
diff changeset
146 <actions>
fubar
parents:
diff changeset
147 <conditional name="refGenomeSource.genomeSource">
fubar
parents:
diff changeset
148 <when value="indexed">
fubar
parents:
diff changeset
149 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
150 <option type="from_data_table" name="star_indexes" column="1" offset="0">
fubar
parents:
diff changeset
151 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
fubar
parents:
diff changeset
152 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
fubar
parents:
diff changeset
153 </option>
fubar
parents:
diff changeset
154 </action>
fubar
parents:
diff changeset
155 </when>
fubar
parents:
diff changeset
156 <when value="history">
fubar
parents:
diff changeset
157 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
158 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
fubar
parents:
diff changeset
159 </action>
fubar
parents:
diff changeset
160 </when>
fubar
parents:
diff changeset
161 </conditional>
fubar
parents:
diff changeset
162 </actions>
fubar
parents:
diff changeset
163 </data>
5
fubar
parents: 4
diff changeset
164 <data format="interval" name="splice_junctions" label="${on_string}_${jobName}_starsplicejunct.bed"
4
fubar
parents:
diff changeset
165 from_work_dir="SJ.out.tab">
fubar
parents:
diff changeset
166 <actions>
fubar
parents:
diff changeset
167 <conditional name="refGenomeSource.genomeSource">
fubar
parents:
diff changeset
168 <when value="indexed">
fubar
parents:
diff changeset
169 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
170 <option type="from_data_table" name="star_indexes" column="1" offset="0">
fubar
parents:
diff changeset
171 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
fubar
parents:
diff changeset
172 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
fubar
parents:
diff changeset
173 </option>
fubar
parents:
diff changeset
174 </action>
fubar
parents:
diff changeset
175 </when>
fubar
parents:
diff changeset
176 <when value="history">
fubar
parents:
diff changeset
177 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
178 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
fubar
parents:
diff changeset
179 </action>
fubar
parents:
diff changeset
180 </when>
fubar
parents:
diff changeset
181 </conditional>
fubar
parents:
diff changeset
182 </actions>
fubar
parents:
diff changeset
183 </data>
5
fubar
parents: 4
diff changeset
184 <data format="bam" name="mapped_reads" label="${on_string}_${jobName}_starmapped.bam"
4
fubar
parents:
diff changeset
185 from_work_dir="Aligned.out.bam">
fubar
parents:
diff changeset
186 <actions>
fubar
parents:
diff changeset
187 <conditional name="refGenomeSource.genomeSource">
fubar
parents:
diff changeset
188 <when value="indexed">
fubar
parents:
diff changeset
189 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
190 <option type="from_data_table" name="star_indexes" column="1" offset="0">
fubar
parents:
diff changeset
191 <filter type="param_value" column="0" value="#" compare="startswith" keep="False"/>
fubar
parents:
diff changeset
192 <filter type="param_value" ref="refGenomeSource.index" column="0"/>
fubar
parents:
diff changeset
193 </option>
fubar
parents:
diff changeset
194 </action>
fubar
parents:
diff changeset
195 </when>
fubar
parents:
diff changeset
196 <when value="history">
fubar
parents:
diff changeset
197 <action type="metadata" name="dbkey">
fubar
parents:
diff changeset
198 <option type="from_param" name="refGenomeSource.ownFile" param_attribute="dbkey" />
fubar
parents:
diff changeset
199 </action>
fubar
parents:
diff changeset
200 </when>
fubar
parents:
diff changeset
201 </conditional>
fubar
parents:
diff changeset
202 </actions>
fubar
parents:
diff changeset
203 </data>
fubar
parents:
diff changeset
204 </outputs>
fubar
parents:
diff changeset
205 <help>
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
206
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
207 **What it does**
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
208 Runs the rna star gapped aligner. Suited to paired or single end rna-seq.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
209
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
210 8.2: SAM alignments
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
211
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
212 The number of loci Nmap a read maps to (multi-mapping) is given by NH:i: field.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
213 The mapping quality MAPQ (column 5) is 255 for uniquely mapping reads, and int(-10*log10(1-1/Nmap)) for
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
214 multi-mapping reads. This scheme is same as the one used by Tophat and is compatible with Cufflinks.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
215
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
216 For multi-mappers, all alignments except one are marked with 0x100 (secondary alignment) in the FLAG
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
217 column 2. The un-marked alignment is either the best one (i.e. highest scoring), or is randomly selected from
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
218 the alignments of equal quality.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
219
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
220 8.2.1: Standard SAM attributes
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
221 With default --outSAMattributes Standard option the following SAM attributes will be generated:
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
222
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
223 Column 12: NH: number of loci a read (pair) maps to
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
224 Column 13: IH: alignment index for all alignments of a read
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
225 Column 14: aS: alignment score
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
226 Column 15: nM: number of mismatches (does not include indels)
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
227
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
228 8.2.2: Extra SAM attrbiutes
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
229 If --outSAMattributes All option is used, the following additional attributes will be output:
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
230
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
231 Column 16: jM:B:c,M1,M2,... Intron motifs for all junctions (i.e. N in CIGAR):
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
232 0: non-canonical; 1:GT/AG, 2: CT/AC, 3: GC/AG, 4: CT/GC, 5: AT/AC, 6: GT/AT.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
233
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
234 If splice junctions database is used, and a junction is annotated, 20 is added to its motif value.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
235 Column 17: jI:B:I,Start1,End1,Start2,End2,... Start and End of introns for all junctions (1-based)
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
236
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
237 Note, that samtools 0.1.18 or later have to be used with these extra attributes.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
238
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
239
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
240 8.2.3: XS SAM strand attribute for Cufflinks/Cuffdiff
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
241
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
242 If you have un-stranded RNA-seq data, and wish to run Cufflinks/Cuffdiff on STAR alignments, you will
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
243 need to run STAR with --outSAMstrandField intronMotif option, which will generate the XS
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
244 strand attribute for all alignments that contain splice junctions. The spliced alignments that have undefined
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
245 strand (i.e. containing only non-canonical junctions) will be suppressed.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
246
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
247 If you have stranded RNA-seq data, you do not need to use any specific STAR options. Instead, you need
11
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
248 to run Cufflinks with the library option --library-type options. For example, cufflinks with
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
249 library-type fr-firststrand should be used for the “standard” dUTP protocol.
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
250 This option has to be used only for Cufflinks runs and not for STAR runs.
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
251
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
252 It is recommended to remove the non-canonical junctions for Cufflinks runs using –
11
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
253
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
254 --outFilterIntronMotifs RemoveNoncanonical
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
255 filter out alignments that contain non-canonical junctions
11
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
256
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
257 OR
11
94c94e25d61c Uploaded
fubar
parents: 10
diff changeset
258
10
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
259 --outFilterIntronMotifs RemoveNoncanonicalUnannotated
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
260 filter out alignments that contain non-canonical unannotated junctions
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
261 when using annotated splice junctions database. The annotated non-
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
262 canonical junctions will be kept.
1ce3d6f45fbc Uploaded
fubar
parents: 6
diff changeset
263
4
fubar
parents:
diff changeset
264
fubar
parents:
diff changeset
265 **Attributions**
fubar
parents:
diff changeset
266
fubar
parents:
diff changeset
267 Note that each component has its own license. Good luck with figuring out your obligations.
fubar
parents:
diff changeset
268
fubar
parents:
diff changeset
269 rna_star - see the web site at rna_star_
fubar
parents:
diff changeset
270
fubar
parents:
diff changeset
271 For details, please see the rna_starMS_
fubar
parents:
diff changeset
272 "STAR: ultrafast universal RNA-seq aligner"
fubar
parents:
diff changeset
273 A. Dobin et al, Bioinformatics 2012; doi: 10.1093/bioinformatics/bts635
fubar
parents:
diff changeset
274
fubar
parents:
diff changeset
275 Galaxy_ (that's what you are using right now!) for gluing everything together
fubar
parents:
diff changeset
276
fubar
parents:
diff changeset
277 Most of the work for this wrapper XML is Jeremy Goecks' original STAR_ wrapper
fubar
parents:
diff changeset
278
fubar
parents:
diff changeset
279 Minor tweaks to output names to suit our downstream purposes, toolshed automated dependencies
fubar
parents:
diff changeset
280 and odds and ends of other code and documentation comprising this tool was
fubar
parents:
diff changeset
281 written by Ross Lazarus and that part is licensed_ the same way as other rgenetics artefacts
fubar
parents:
diff changeset
282
fubar
parents:
diff changeset
283 .. _STAR: https://bitbucket.org/jgoecks/jeremys-code/raw/fa1930a689b8e2f6b59cc1706e5ba0ed8ad357be/galaxy/tool-wrappers/star.xml
fubar
parents:
diff changeset
284 .. _licensed: http://creativecommons.org/licenses/by-nc-nd/3.0/
fubar
parents:
diff changeset
285 .. _rna_star: http://code.google.com/p/rna-star/
fubar
parents:
diff changeset
286 .. _rna_starMS: http://bioinformatics.oxfordjournals.org/content/29/1/15.full
fubar
parents:
diff changeset
287 .. _Galaxy: http://getgalaxy.org
fubar
parents:
diff changeset
288
fubar
parents:
diff changeset
289 </help>
fubar
parents:
diff changeset
290 </tool>