Mercurial > repos > devteam > cufflinks
annotate cufflinks_wrapper.xml @ 5:fe6f99e3d7f4 draft
Replace sam_fa_indices.loc with fasta_indexes.loc in fasta_indexes.loc.sample.
author | devteam |
---|---|
date | Thu, 09 Jan 2014 14:28:13 -0500 |
parents | da11bfc10e81 |
children | 9aab29e159a7 |
rev | line source |
---|---|
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
1 <tool id="cufflinks" name="Cufflinks" version="0.0.7"> |
0 | 2 <!-- Wrapper supports Cufflinks versions v1.3.0 and newer --> |
3 <description>transcript assembly and FPKM (RPKM) estimates for RNA-Seq data</description> | |
4 <requirements> | |
5 <requirement type="package" version="2.1.1">cufflinks</requirement> | |
6 </requirements> | |
7 <version_command>cufflinks 2>&1 | head -n 1</version_command> | |
8 <command interpreter="python"> | |
9 cufflinks_wrapper.py | |
10 --input=$input | |
11 --assembled-isoforms-output=$assembled_isoforms | |
12 --num-threads="4" | |
13 -I $max_intron_len | |
14 -F $min_isoform_fraction | |
15 -j $pre_mrna_fraction | |
16 $effective_length_correction | |
17 | |
18 ## Include reference annotation? | |
19 #if $reference_annotation.use_ref == "Use reference annotation": | |
20 -G $reference_annotation.reference_annotation_file | |
21 #end if | |
22 #if $reference_annotation.use_ref == "Use reference annotation guide": | |
23 -g $reference_annotation.reference_annotation_guide_file | |
24 #end if | |
25 | |
26 ## Normalization? | |
27 #if str($do_normalization) == "Yes": | |
28 -N | |
29 #end if | |
30 | |
31 ## Bias correction? | |
32 #if $bias_correction.do_bias_correction == "Yes": | |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
33 -b |
0 | 34 #if $bias_correction.seq_source.index_source == "history": |
35 --ref_file=$bias_correction.seq_source.ref_file | |
36 #else: | |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
37 --index=${bias_correction.seq_source.index.fields.path} |
0 | 38 #end if |
39 #end if | |
40 | |
41 ## Multi-read correct? | |
42 #if str($multiread_correct) == "Yes": | |
43 -u | |
44 #end if | |
45 | |
46 ## Include global model if available. | |
47 #if $global_model: | |
48 --global_model=$global_model | |
49 #end if | |
50 </command> | |
51 <inputs> | |
52 <param format="sam,bam" name="input" type="data" label="SAM or BAM file of aligned RNA-Seq reads" help=""/> | |
53 <param name="max_intron_len" type="integer" value="300000" min="1" max="600000" label="Max Intron Length" help=""/> | |
54 <param name="min_isoform_fraction" type="float" value="0.10" min="0" max="1" label="Min Isoform Fraction" help=""/> | |
55 <param name="pre_mrna_fraction" type="float" value="0.15" min="0" max="1" label="Pre MRNA Fraction" help=""/> | |
56 <param name="do_normalization" type="select" label="Perform quartile normalization" help="Removes top 25% of genes from FPKM denominator to improve accuracy of differential expression calls for low abundance transcripts."> | |
57 <option value="No" selected="true">No</option> | |
58 <option value="Yes">Yes</option> | |
59 </param> | |
60 <conditional name="reference_annotation"> | |
61 <param name="use_ref" type="select" label="Use Reference Annotation"> | |
62 <option value="No" selected="true">No</option> | |
63 <option value="Use reference annotation">Use reference annotation</option> | |
64 <option value="Use reference annotation guide">Use reference annotation as guide</option> | |
65 </param> | |
66 <when value="No"></when> | |
67 <when value="Use reference annotation"> | |
68 <param format="gff3,gtf" name="reference_annotation_file" type="data" label="Reference Annotation" help="Gene annotation dataset in GTF or GFF3 format."/> | |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
69 </when> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
70 <when value="Use reference annotation guide"> |
0 | 71 <param format="gff3,gtf" name="reference_annotation_guide_file" type="data" label="Reference Annotation" help="Gene annotation dataset in GTF or GFF3 format."/> |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
72 </when> |
0 | 73 </conditional> |
74 <conditional name="bias_correction"> | |
75 <param name="do_bias_correction" type="select" label="Perform Bias Correction" help="Bias detection and correction can significantly improve accuracy of transcript abundance estimates."> | |
76 <option value="No" selected="true">No</option> | |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
77 <option value="Yes">Yes</option> |
0 | 78 </param> |
79 <when value="Yes"> | |
80 <conditional name="seq_source"> | |
81 <param name="index_source" type="select" label="Reference sequence data"> | |
82 <option value="cached" selected="true">Locally cached</option> | |
83 <option value="history">History</option> | |
84 </param> | |
2
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
85 <when value="cached"> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
86 <param name="index" type="select" label="Using reference genome"> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
87 <options from_data_table="fasta_indexes"> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
88 <filter type="data_meta" ref="input" key="dbkey" column="1" /> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
89 <validator type="no_options" message="No reference genome is available for the build associated with the selected input dataset" /> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
90 </options> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
91 </param> |
da11bfc10e81
Update to the new data table specification.
Dave Bouvier <dave@bx.psu.edu>
parents:
0
diff
changeset
|
92 </when> |
0 | 93 <when value="history"> |
94 <param name="ref_file" type="data" format="fasta" label="Using reference file" /> | |
95 </when> | |
96 </conditional> | |
97 </when> | |
98 <when value="No"></when> | |
99 </conditional> | |
100 | |
101 <param name="multiread_correct" type="select" label="Use multi-read correct" help="Tells Cufflinks to do an initial estimation procedure to more accurately weight reads mapping to multiple locations in the genome."> | |
102 <option value="No" selected="true">No</option> | |
103 <option value="Yes">Yes</option> | |
104 </param> | |
105 | |
106 <param name="effective_length_correction" type="select" label="Use effective length correction" help="Cufflinks will not employ its 'effective' length normalization to transcript FPKM."> | |
107 <option value="" selected="true">Yes</option> | |
108 <option value="--no-effective-length-correction">No</option> | |
109 </param> | |
110 | |
111 <param name="global_model" type="hidden_data" label="Global model (for use in Trackster)" optional="True"/> | |
112 </inputs> | |
113 | |
114 <outputs> | |
115 <data format="tabular" name="genes_expression" label="${tool.name} on ${on_string}: gene expression" from_work_dir="genes.fpkm_tracking"/> | |
116 <data format="tabular" name="transcripts_expression" label="${tool.name} on ${on_string}: transcript expression" from_work_dir="isoforms.fpkm_tracking"/> | |
117 <data format="gtf" name="assembled_isoforms" label="${tool.name} on ${on_string}: assembled transcripts"/> | |
118 <data format="txt" name="total_map_mass" label="${tool.name} on ${on_string}: total map mass" hidden="true" from_work_dir="global_model.txt"/> | |
119 </outputs> | |
120 | |
121 <trackster_conf> | |
122 <action type="set_param" name="global_model" output_name="total_map_mass"/> | |
123 </trackster_conf> | |
124 | |
125 <tests> | |
126 <!-- | |
127 Simple test that uses test data included with cufflinks. | |
128 --> | |
129 <test> | |
130 <param name="input" value="cufflinks_in.bam"/> | |
131 <param name="max_intron_len" value="300000"/> | |
132 <param name="min_isoform_fraction" value="0.05"/> | |
133 <param name="pre_mrna_fraction" value="0.05"/> | |
134 <param name="use_ref" value="No"/> | |
135 <param name="do_normalization" value="No" /> | |
136 <param name="do_bias_correction" value="No"/> | |
137 <param name="multiread_correct" value="No"/> | |
138 <param name="effective_length_correction" value="Yes"/> | |
139 <output name="genes_expression" format="tabular" lines_diff="2" file="cufflinks_out3.fpkm_tracking"/> | |
140 <output name="transcripts_expression" format="tabular" lines_diff="2" file="cufflinks_out2.fpkm_tracking"/> | |
141 <output name="assembled_isoforms" file="cufflinks_out1.gtf"/> | |
142 <output name="global_model" file="cufflinks_out4.txt"/> | |
143 </test> | |
144 </tests> | |
145 | |
146 <help> | |
147 **Cufflinks Overview** | |
148 | |
149 Cufflinks_ assembles transcripts, estimates their abundances, and tests for differential expression and regulation in RNA-Seq samples. It accepts aligned RNA-Seq reads and assembles the alignments into a parsimonious set of transcripts. Cufflinks then estimates the relative abundances of these transcripts based on how many reads support each one. Please cite: Trapnell C, Williams BA, Pertea G, Mortazavi AM, Kwan G, van Baren MJ, Salzberg SL, Wold B, Pachter L. Transcript assembly and abundance estimation from RNA-Seq reveals thousands of new transcripts and switching among isoforms. Nature Biotechnology doi:10.1038/nbt.1621 | |
150 | |
151 .. _Cufflinks: http://cufflinks.cbcb.umd.edu/ | |
152 | |
153 ------ | |
154 | |
155 **Know what you are doing** | |
156 | |
157 .. class:: warningmark | |
158 | |
159 There is no such thing (yet) as an automated gearshift in expression analysis. 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. | |
160 | |
161 .. __: http://cufflinks.cbcb.umd.edu/manual.html | |
162 | |
163 ------ | |
164 | |
165 **Input formats** | |
166 | |
167 Cufflinks takes a text file of SAM alignments as input. The RNA-Seq read mapper TopHat produces output in this format, and is recommended for use with Cufflinks. However Cufflinks will accept SAM alignments generated by any read mapper. Here's an example of an alignment Cufflinks will accept:: | |
168 | |
169 s6.25mer.txt-913508 16 chr1 4482736 255 14M431N11M * 0 0 \ | |
170 CAAGATGCTAGGCAAGTCTTGGAAG IIIIIIIIIIIIIIIIIIIIIIIII NM:i:0 XS:A:- | |
171 | |
172 Note the use of the custom tag XS. This attribute, which must have a value of "+" or "-", indicates which strand the RNA that produced this read came from. While this tag can be applied to any alignment, including unspliced ones, it must be present for all spliced alignment records (those with a 'N' operation in the CIGAR string). | |
173 The SAM file supplied to Cufflinks must be sorted by reference position. If you aligned your reads with TopHat, your alignments will be properly sorted already. If you used another tool, you may want to make sure they are properly sorted as follows:: | |
174 | |
175 sort -k 3,3 -k 4,4n hits.sam > hits.sam.sorted | |
176 | |
177 NOTE: Cufflinks currently only supports SAM alignments with the CIGAR match ('M') and reference skip ('N') operations. Support for the other operations, such as insertions, deletions, and clipping, will be added in the future. | |
178 | |
179 ------ | |
180 | |
181 **Outputs** | |
182 | |
183 Cufflinks produces three output files: | |
184 | |
185 Transcripts and Genes: | |
186 | |
187 This GTF file contains Cufflinks' assembled isoforms. The first 7 columns are standard GTF, and the last column contains attributes, some of which are also standardized (e.g. gene_id, transcript_id). There one GTF record per row, and each record represents either a transcript or an exon within a transcript. The columns are defined as follows:: | |
188 | |
189 Column number Column name Example Description | |
190 ----------------------------------------------------- | |
191 1 seqname chrX Chromosome or contig name | |
192 2 source Cufflinks The name of the program that generated this file (always 'Cufflinks') | |
193 3 feature exon The type of record (always either "transcript" or "exon"). | |
194 4 start 77696957 The leftmost coordinate of this record (where 0 is the leftmost possible coordinate) | |
195 5 end 77712009 The rightmost coordinate of this record, inclusive. | |
196 6 score 77712009 The most abundant isoform for each gene is assigned a score of 1000. Minor isoforms are scored by the ratio (minor FPKM/major FPKM) | |
197 7 strand + Cufflinks' guess for which strand the isoform came from. Always one of '+', '-' '.' | |
198 7 frame . Cufflinks does not predict where the start and stop codons (if any) are located within each transcript, so this field is not used. | |
199 8 attributes See below | |
200 | |
201 Each GTF record is decorated with the following attributes:: | |
202 | |
203 Attribute Example Description | |
204 ----------------------------------------- | |
205 gene_id CUFF.1 Cufflinks gene id | |
206 transcript_id CUFF.1.1 Cufflinks transcript id | |
207 FPKM 101.267 Isoform-level relative abundance in Reads Per Kilobase of exon model per Million mapped reads | |
208 frac 0.7647 Reserved. Please ignore, as this attribute may be deprecated in the future | |
209 conf_lo 0.07 Lower bound of the 95% confidence interval of the abundance of this isoform, as a fraction of the isoform abundance. That is, lower bound = FPKM * (1.0 - conf_lo) | |
210 conf_hi 0.1102 Upper bound of the 95% confidence interval of the abundance of this isoform, as a fraction of the isoform abundance. That is, upper bound = FPKM * (1.0 + conf_lo) | |
211 cov 100.765 Estimate for the absolute depth of read coverage across the whole transcript | |
212 | |
213 | |
214 Transcripts only: | |
215 This file is simply a tab delimited file containing one row per transcript and with columns containing the attributes above. There are a few additional attributes not in the table above, but these are reserved for debugging, and may change or disappear in the future. | |
216 | |
217 Genes only: | |
218 This file contains gene-level coordinates and expression values. | |
219 | |
220 ------- | |
221 | |
222 **Cufflinks settings** | |
223 | |
224 All of the options have a default value. You can change any of them. Most of the options in Cufflinks have been implemented here. | |
225 | |
226 ------ | |
227 | |
228 **Cufflinks parameter list** | |
229 | |
230 This is a list of implemented Cufflinks options:: | |
231 | |
232 -m INT 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. The default is 45bp. | |
233 -s INT The standard deviation for the distribution on inner distances between mate pairs. The default is 20bp. | |
234 -I INT The minimum intron length. Cufflinks will not report transcripts with introns longer than this, and will ignore SAM alignments with REF_SKIP CIGAR operations longer than this. The default is 300,000. | |
235 -F After calculating isoform abundance for a gene, Cufflinks filters out transcripts that it believes are very low abundance, because isoforms expressed at extremely low levels often cannot reliably be assembled, and may even be artifacts of incompletely spliced precursors of processed transcripts. This parameter is also used to filter out introns that have far fewer spliced alignments supporting them. The default is 0.05, or 5% of the most abundant isoform (the major isoform) of the gene. | |
236 -j Some RNA-Seq protocols produce a significant amount of reads that originate from incompletely spliced transcripts, and these reads can confound the assembly of fully spliced mRNAs. Cufflinks uses this parameter to filter out alignments that lie within the intronic intervals implied by the spliced alignments. The minimum depth of coverage in the intronic region covered by the alignment is divided by the number of spliced reads, and if the result is lower than this parameter value, the intronic alignments are ignored. The default is 5%. | |
237 -G Tells Cufflinks to use the supplied reference annotation to estimate isoform expression. It will not assemble novel transcripts, and the program will ignore alignments not structurally compatible with any reference transcript. | |
238 -N With this option, Cufflinks excludes the contribution of the top 25 percent most highly expressed genes from the number of mapped fragments used in the FPKM denominator. This can improve robustness of differential expression calls for less abundant genes and transcripts. | |
239 </help> | |
240 </tool> |