Mercurial > repos > devteam > cuffdiff
annotate cuffdiff_wrapper.xml @ 4:e20b05db0839 draft
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
author | devteam |
---|---|
date | Sun, 19 Feb 2017 12:11:27 -0500 |
parents | 9ec1cc10742c |
children | 3d8071386667 |
rev | line source |
---|---|
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
1 <tool id="cuffdiff" name="Cuffdiff" version="@VERSION@.5"> |
0 | 2 <description>find significant changes in transcript expression, splicing, and promoter use</description> |
3 <macros> | |
4 <import>cuff_macros.xml</import> | |
5 </macros> | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
6 <expand macro="requirements"> |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
7 <requirement type="package" version="2.16.0">bioconductor-cummerbund</requirement> |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
8 </expand> |
0 | 9 <version_command>cuffdiff 2>&1 | head -n 1</version_command> |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
10 <command detect_errors="aggressive"><![CDATA[ |
0 | 11 cuffdiff |
12 --no-update-check | |
2
c139f0dd4ee6
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 6e148b31fed1b322ce720804d8525088ec6d43f9
devteam
parents:
1
diff
changeset
|
13 --quiet |
0 | 14 --FDR=$fdr |
15 --num-threads="\${GALAXY_SLOTS:-4}" | |
16 --min-alignment-count=$min_alignment_count | |
17 --library-norm-method=$library_norm_method | |
18 --dispersion-method=$dispersion_method | |
19 | |
20 ## Set advanced SE data parameters? | |
21 #if $additional.sAdditional == "Yes": | |
22 -m $additional.frag_mean_len | |
23 -s $additional.frag_len_std_dev | |
24 #end if | |
25 | |
26 ## Multi-read correct? | |
27 #if $multiread_correct : | |
28 -u | |
29 #end if | |
30 | |
31 ## Bias correction? | |
32 #if $bias_correction.do_bias_correction == "Yes": | |
33 -b | |
34 #if $bias_correction.seq_source.index_source == "history": | |
35 ## Custom genome from history. | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
36 '$bias_correction.seq_source.ref_file' |
0 | 37 #else: |
38 ## Built-in genome. | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
39 '${bias_correction.seq_source.index.fields.path}' |
0 | 40 #end if |
41 #end if | |
42 | |
43 @CONDITION_LABELS@ | |
44 | |
45 $length_correction | |
46 | |
47 ## Set advanced parameters for cufflinks | |
48 #if $advanced_settings.sAdvanced == "Yes": | |
49 #if str($advanced_settings.library_type) != 'auto': | |
50 --library-type=$advanced_settings.library_type | |
51 #end if | |
52 #if $advanced_settings.mask_file: | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
53 --mask-file '$advanced_settings.mask_file' |
0 | 54 #end if |
55 #if $advanced_settings.time_series: | |
56 --time-series | |
57 #end if | |
58 --max-mle-iterations=$advanced_settings.max_mle_iterations | |
59 $advanced_settings.hits_norm | |
60 --max-bundle-frags=$advanced_settings.max_bundle_frags | |
61 --num-frag-count-draws=$advanced_settings.num_frag_count_draws | |
62 --num-frag-assign-draws=$advanced_settings.num_frag_assign_draws | |
63 --min-reps-for-js-test=$advanced_settings.min_reps_for_js_test | |
64 #end if | |
65 ## Inputs. | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
66 '$gtf_input' |
0 | 67 |
68 @CONDITION_SAMPLES@ | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
69 #if $generate_sqlite: |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
70 && |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
71 Rscript '$__tool_directory__/cummeRbund.R' && mv cummeRbund.sqlite '${output_cummerbund}' |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
72 #end if |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
73 ]]> |
0 | 74 </command> |
75 <inputs> | |
76 <param format="gtf,gff3" name="gtf_input" type="data" label="Transcripts" help="A transcript GFF3 or GTF file produced by cufflinks, cuffcompare, or other source."/> | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
77 <param name="omit_tabular_output" type="boolean" truevalue="yes" falsevalue="no" label="Omit Tabular Datasets" help="Discard the tabular output." /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
78 <param name="generate_sqlite" type="boolean" truevalue="yes" falsevalue="no" label="Generate SQLite" help="Generate a SQLite database for use with cummeRbund." /> |
0 | 79 <expand macro="condition_inputs" /> |
80 <param name="library_norm_method" type="select" label="Library normalization method"> | |
81 <option value="geometric" selected="True">geometric</option> | |
82 <option value="classic-fpkm">classic-fpkm</option> | |
83 <option value="quartile">quartile</option> | |
84 </param> | |
85 | |
86 <param name="dispersion_method" type="select" label="Dispersion estimation method" help="If using only one sample per condition, you must use 'blind.'"> | |
87 <option value="pooled" selected="True">pooled</option> | |
88 <option value="per-condition">per-condition</option> | |
89 <option value="blind">blind</option> | |
90 <option value="poisson">poisson</option> | |
91 </param> | |
92 | |
93 <param name="fdr" type="float" value="0.05" label="False Discovery Rate" help="The allowed false discovery rate."/> | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
94 <param name="min_alignment_count" type="integer" value="10" label="Min Alignment Count" |
0 | 95 help="The minimum number of alignments in a locus for needed to conduct significance testing on changes in that locus observed between samples."/> |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
96 <param name="multiread_correct" type="boolean" label="Use multi-read correct" |
0 | 97 help="Tells Cufflinks to do an initial estimation procedure to more accurately weight reads mapping to multiple locations in the genome." /> |
98 | |
99 <conditional name="bias_correction"> | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
100 <param name="do_bias_correction" type="select" label="Perform Bias Correction" |
0 | 101 help="Bias detection and correction can significantly improve accuracy of transcript abundance estimates."> |
102 <option value="No">No</option> | |
103 <option value="Yes">Yes</option> | |
104 </param> | |
105 <when value="Yes"> | |
106 <conditional name="seq_source"> | |
107 <param name="index_source" type="select" label="Reference sequence data"> | |
108 <option value="cached">Locally cached</option> | |
109 <option value="history">History</option> | |
110 </param> | |
111 <when value="cached"> | |
112 <param name="index" type="select" label="Using reference genome"> | |
113 <options from_data_table="fasta_indexes"> | |
114 <filter type="data_meta" ref="gtf_input" key="dbkey" column="1" /> | |
115 <validator type="no_options" message="No reference genome is available for the build associated with the selected input dataset" /> | |
116 </options> | |
117 </param> | |
118 </when> | |
119 <when value="history"> | |
120 <param name="ref_file" type="data" format="fasta" label="Using reference file" /> | |
121 </when> | |
122 </conditional> | |
123 </when> | |
124 <when value="No"></when> | |
125 </conditional> | |
126 | |
127 <param name="include_read_group_files" type="select" label="Include Read Group Datasets" help="Read group datasets provide information on replicates."> | |
128 <option value="No" selected="true">No</option> | |
129 <option value="Yes">Yes</option> | |
130 </param> | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
131 |
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
132 <param name="include_count_files" type="select" label="Include Count Based output files" |
0 | 133 help="Cuffdiff estimates the number of fragments that originated from each transcript, primary transcript, and gene in each sample. Primary transcript and gene counts are computed by summing the counts of transcripts in each primary transcript group or gene group."> |
134 <option value="No" selected="true">No</option> | |
135 <option value="Yes">Yes</option> | |
136 </param> | |
137 | |
138 <param name="length_correction" type="select" label="apply length correction" help="mode of length normalization to transcript fpkm."> | |
139 <option value="" selected="true">cufflinks effective length correction</option> | |
140 <option value="--no-effective-length-correction">standard length correction</option> | |
141 <option value="--no-length-correction">no length correction at all (use raw counts)</option> | |
142 </param> | |
143 | |
144 <conditional name="additional"> | |
145 <param name="sAdditional" type="select" label="Set Additional Parameters for single end reads? (not recommended for paired-end reads)"> | |
146 <option value="No" selected="True">No</option> | |
147 <option value="Yes">Yes</option> | |
148 </param> | |
149 <when value="No"></when> | |
150 <when value="Yes"> | |
151 <param name="frag_mean_len" type="integer" value="200" label="Average Fragment Length"/> | |
152 <param name="frag_len_std_dev" type="integer" value="80" label="Fragment Length Standard Deviation"/> | |
153 </when> | |
154 </conditional> | |
155 | |
156 <conditional name="advanced_settings"> | |
157 <param name="sAdvanced" type="select" label="Set Advanced Cuffdiff parameters? "> | |
158 <option value="No" selected="True">No</option> | |
159 <option value="Yes">Yes</option> | |
160 </param> | |
161 <when value="No"></when> | |
162 <when value="Yes"> | |
163 <param type="select" name="library_type" label="Library prep used for input reads" help=""> | |
164 <option value="auto" selected="True">Auto Detect</option> | |
165 <option value="ff-firststrand">ff-firststrand</option> | |
166 <option value="ff-secondstrand">ff-secondstrand</option> | |
167 <option value="ff-unstranded">ff-unstranded</option> | |
168 <option value="fr-firststrand">fr-firststrand</option> | |
169 <option value="fr-secondstrand">fr-secondstrand</option> | |
170 <option value="fr-unstranded" >fr-unstranded</option> | |
171 <option value="transfrags">transfrags</option> | |
172 </param> | |
173 <param name="mask_file" type="data" format="gtf,gff3" label="Mask File" help="Ignore all alignment within transcripts in this file" optional="True" /> | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
174 <param name="time_series" type="boolean" label="Perform Time Series analysis" |
0 | 175 help="Instructs Cuffdiff to analyze the provided samples as a time series, rather than testing for differences between all pairs of samples. Samples should be provided in increasing time order at the command line (e.g first time point SAM, second timepoint SAM, etc.)" /> |
176 <param name="max_mle_iterations" value="5000" type="integer" label="Max MLE iterations" help="Maximum iterations allowed for Maximal Likelyhood Estimation calculations" /> | |
177 <param name="hits_norm" type="select" label="Hits included in normalization" help="All Hits: With this option, Cufflinks counts all fragments, including those not compatible with any reference transcript, towards the number of mapped fragments used in the FPKM denominator. Compatible Hits: With this option, Cufflinks counts only those fragments compatible with some reference transcript towards the number of mapped fragments used in the FPKM denominator. Using this mode is generally recommended in Cuffdiff to reduce certain types of bias caused by differential amounts of ribosomal reads which can create the impression of falsely differentially expressed genes. It is active by default." > | |
178 <option value="--compatible-hits-norm" selected="True">Compatible Hits</option> | |
179 <option value="--total-hits-norm">All Hits</option> | |
180 </param> | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
181 <param name="max_bundle_frags" type="integer" value="500000" label="Maximum number of fragments per locus" |
0 | 182 help="Sets the maximum number of fragments a locus may have before being skipped. Skipped loci are listed in skipped.gtf. Default: 500,000" /> |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
183 <param name="num_frag_count_draws" type="integer" value="100" label="Number of fragment generation samples" |
0 | 184 help="Cuffdiff will make this many draws from each transcript's predicted negative binomial random numbder generator. Each draw is a number of fragments that will be probabilistically assigned to the transcripts in the transcriptome. Used to estimate the variance-covariance matrix on assigned fragment counts. Default: 100."/> |
185 <param name="num_frag_assign_draws" type="integer" value="50" label="Number of fragment assignment samples per generation" help="For each fragment drawn from a transcript, Cuffdiff will assign it this many times (probabilistically), thus estimating the assignment uncertainty for each transcript. Used to estimate the variance-covariance matrix on assigned fragment counts. Default: 50."/> | |
186 <param name="min_reps_for_js_test" type="integer" value="3" label="Minimal Replicates for isoform shift testing" help="Cuffdiff won't test genes for differential regulation unless the conditions in question have at least this many replicates. Default: 3." /> | |
187 </when> | |
188 </conditional> | |
189 </inputs> | |
190 <outputs> | |
191 <!-- Optional read group datasets. --> | |
192 <data format="tabular" name="isoforms_read_group" label="${tool.name} on ${on_string}: isoforms read group tracking" from_work_dir="isoforms.read_group_tracking" > | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
193 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 194 </data> |
195 <data format="tabular" name="genes_read_group" label="${tool.name} on ${on_string}: genes read group tracking" from_work_dir="genes.read_group_tracking" > | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
196 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 197 </data> |
198 <data format="tabular" name="cds_read_group" label="${tool.name} on ${on_string}: CDs read group tracking" from_work_dir="cds.read_group_tracking" > | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
199 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 200 </data> |
201 <data format="tabular" name="tss_groups_read_group" label="${tool.name} on ${on_string}: TSS groups read group tracking" from_work_dir="tss_groups.read_group_tracking" > | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
202 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 203 </data> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
204 <data format="txt" name="read_group_info" label="${tool.name} on ${on_string}: read group info" from_work_dir="read_groups.info" > |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
205 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 206 </data> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
207 <data format="txt" name="run_info" label="${tool.name} on ${on_string}: run info" from_work_dir="run.info" > |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
208 <filter>(include_read_group_files == 'Yes') and not omit_tabular_output</filter> |
0 | 209 </data> |
210 <!-- Standard datasets. --> | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
211 <data format="tabular" name="splicing_diff" label="${tool.name} on ${on_string}: splicing differential expression testing" from_work_dir="splicing.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
212 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
213 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
214 <data format="tabular" name="promoters_diff" label="${tool.name} on ${on_string}: promoters differential expression testing" from_work_dir="promoters.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
215 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
216 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
217 <data format="tabular" name="cds_diff" label="${tool.name} on ${on_string}: CDS overloading diffential expression testing" from_work_dir="cds.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
218 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
219 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
220 <data format="tabular" name="cds_exp_fpkm_tracking" label="${tool.name} on ${on_string}: CDS FPKM differential expression testing" from_work_dir="cds_exp.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
221 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
222 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
223 <data format="tabular" name="cds_fpkm_tracking" label="${tool.name} on ${on_string}: CDS FPKM tracking" from_work_dir="cds.fpkm_tracking"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
224 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
225 </data> |
0 | 226 <data format="tabular" name="cds_count_tracking" label="${tool.name} on ${on_string}: CDS count tracking" from_work_dir="cds.count_tracking" > |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
227 <filter>(include_count_files == 'Yes') and not omit_tabular_output</filter> |
0 | 228 </data> |
229 | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
230 <data format="tabular" name="tss_groups_exp" label="${tool.name} on ${on_string}: TSS groups differential expression testing" from_work_dir="tss_group_exp.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
231 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
232 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
233 <data format="tabular" name="tss_groups_fpkm_tracking" label="${tool.name} on ${on_string}: TSS groups FPKM tracking" from_work_dir="tss_groups.fpkm_tracking"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
234 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
235 </data> |
0 | 236 <data format="tabular" name="tss_groups_count_tracking" label="${tool.name} on ${on_string}: TSS count FPKM tracking" from_work_dir="tss_groups.count_tracking" > |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
237 <filter>(include_count_files == 'Yes') and not omit_tabular_output</filter> |
0 | 238 </data> |
239 | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
240 <data format="tabular" name="genes_exp" label="${tool.name} on ${on_string}: gene differential expression testing" from_work_dir="gene_exp.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
241 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
242 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
243 <data format="tabular" name="genes_fpkm_tracking" label="${tool.name} on ${on_string}: gene FPKM tracking" from_work_dir="genes.fpkm_tracking"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
244 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
245 </data> |
0 | 246 <data format="tabular" name="genes_count_tracking" label="${tool.name} on ${on_string}: gene count tracking" from_work_dir="genes.count_tracking" > |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
247 <filter>(include_count_files == 'Yes') and not omit_tabular_output</filter> |
0 | 248 </data> |
249 | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
250 <data format="tabular" name="isoforms_exp" label="${tool.name} on ${on_string}: transcript differential expression testing" from_work_dir="isoform_exp.diff"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
251 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
252 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
253 <data format="tabular" name="isoforms_fpkm_tracking" label="${tool.name} on ${on_string}: transcript FPKM tracking" from_work_dir="isoforms.fpkm_tracking"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
254 <filter>not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
255 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
256 <data format="tabular" name="isoforms_count_tracking" label="${tool.name} on ${on_string}: transcript count tracking" from_work_dir="isoforms.count_tracking"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
257 <filter>(include_count_files == 'Yes') and not omit_tabular_output</filter> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
258 </data> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
259 <data format="sqlite" name="output_cummerbund" label="${tool.name} on ${on_string}: cummeRbund SQLite database"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
260 <filter>generate_sqlite</filter> |
0 | 261 </data> |
262 </outputs> | |
263 | |
264 <tests> | |
265 <test> | |
266 <!-- | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
267 cuffdiff cuffcompare_out5.gtf cuffdiff_in1.sam cuffdiff_in2.sam |
0 | 268 --> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
269 <param name="gtf_input" value="cuffdiff_in1.gtf" ftype="gtf" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
270 <param name="generate_sqlite" value="yes" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
271 <param name="omit_tabular_output" value="yes" /> |
0 | 272 <conditional name="in_type"> |
273 <param name="set_in_type" value="BAM" /> | |
274 <repeat name="conditions"> | |
275 <param name="name" value="q1" /> | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
276 <param name="samples" value="cuffdiff_in1.sam" ftype="sam" /> |
0 | 277 </repeat> |
278 <repeat name="conditions"> | |
279 <param name="name" value="q2" /> | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
280 <param name="samples" value="cuffdiff_in2.sam" ftype="sam" /> |
0 | 281 </repeat> |
282 </conditional> | |
283 <param name="fdr" value="0.05" /> | |
284 <param name="min_alignment_count" value="0" /> | |
285 <param name="do_bias_correction" value="No" /> | |
286 <param name="do_normalization" value="No" /> | |
287 <param name="multiread_correct" value="No"/> | |
288 <param name="sAdditional" value="No"/> | |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
289 <output name="output_cummerbund" ftype="sqlite" file="cuffdiff_out.sqlite" compare="sim_size" /> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
290 </test> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
291 <test> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
292 <!-- |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
293 cuffdiff cuffcompare_out5.gtf cuffdiff_in1.sam cuffdiff_in2.sam |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
294 --> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
295 <param name="gtf_input" value="cuffdiff_in1.gtf" ftype="gtf" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
296 <param name="omit_tabular_output" value="no" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
297 <conditional name="in_type"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
298 <param name="set_in_type" value="BAM" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
299 <repeat name="conditions"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
300 <param name="name" value="q1" /> |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
301 <param name="samples" value="cuffdiff_in1.sam" ftype="sam" /> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
302 </repeat> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
303 <repeat name="conditions"> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
304 <param name="name" value="q2" /> |
3
9ec1cc10742c
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit eb18f691975ef9539b5ebd4f118343c8ad967a1f
devteam
parents:
2
diff
changeset
|
305 <param name="samples" value="cuffdiff_in2.sam" ftype="sam" /> |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
306 </repeat> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
307 </conditional> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
308 <param name="fdr" value="0.05" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
309 <param name="min_alignment_count" value="0" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
310 <param name="do_bias_correction" value="No" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
311 <param name="do_normalization" value="No" /> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
312 <param name="multiread_correct" value="No"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
313 <param name="sAdditional" value="No"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
314 <output name="splicing_diff" file="splicing.diff"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
315 <output name="promoters_diff" file="promoters.diff"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
316 <output name="cds_diff" file="cds.diff"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
317 <output name="cds_exp_fpkm_tracking" file="cds.exp_fpkm_tracking"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
318 <output name="cds_fpkm_tracking" file="cds.fpkm_tracking"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
319 <output name="tss_groups_exp" file="tss.groups_exp" lines_diff="200"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
320 <output name="tss_groups_fpkm_tracking" file="tss.groups_fpkm_tracking"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
321 <output name="genes_exp" file="genes.exp" lines_diff="200"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
322 <output name="genes_fpkm_tracking" file="genes.fpkm_tracking" lines_diff="200"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
323 <output name="isoforms_exp" file="isoforms.exp" lines_diff="200"/> |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
324 <output name="isoforms_fpkm_tracking" file="isoforms.fpkm_tracking" lines_diff="200"/> |
0 | 325 </test> |
326 </tests> | |
327 <help> | |
328 **Cuffdiff Overview** | |
329 | |
330 Cuffdiff is part of Cufflinks_. Cuffdiff find significant changes in transcript expression, splicing, and promoter use. 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 | |
331 | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
332 .. _Cufflinks: http://cole-trapnell-lab.github.io/cufflinks/ |
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
333 |
0 | 334 ------ |
335 | |
336 **Know what you are doing** | |
337 | |
338 .. class:: warningmark | |
339 | |
340 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. | |
341 | |
1
9ba750f285e3
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
342 .. __: http://cole-trapnell-lab.github.io/cufflinks/cuffdiff/ |
0 | 343 |
344 ------ | |
345 | |
346 **Input format** | |
347 | |
348 Cuffdiff takes Cufflinks or Cuffcompare GTF files as input along with two SAM files containing the fragment alignments for two or more samples. | |
349 | |
350 ------ | |
351 | |
352 **Outputs** | |
353 | |
354 Cuffdiff produces many output files: | |
355 | |
356 1. Transcript FPKM (+count) expression tracking. | |
357 2. Gene FPKM (+count) expression tracking; tracks the summed FPKM of transcripts sharing each gene_id | |
358 3. Primary transcript FPKM (+count) tracking; tracks the summed FPKM of transcripts sharing each tss_id | |
359 4. Coding sequence FPKM (+count) tracking; tracks the summed FPKM of transcripts sharing each p_id, independent of tss_id | |
360 5. Transcript differential FPKM. | |
361 6. Gene differential FPKM. Tests difference sin the summed FPKM of transcripts sharing each gene_id | |
362 7. Primary transcript differential FPKM. Tests difference sin the summed FPKM of transcripts sharing each tss_id | |
363 8. Coding sequence differential FPKM. Tests difference sin the summed FPKM of transcripts sharing each p_id independent of tss_id | |
364 9. Differential splicing tests: this tab delimited file lists, for each primary transcript, the amount of overloading detected among its isoforms, i.e. how much differential splicing exists between isoforms processed from a single primary transcript. Only primary transcripts from which two or more isoforms are spliced are listed in this file. | |
365 10. Differential promoter tests: this tab delimited file lists, for each gene, the amount of overloading detected among its primary transcripts, i.e. how much differential promoter use exists between samples. Only genes producing two or more distinct primary transcripts (i.e. multi-promoter genes) are listed here. | |
366 11. Differential CDS tests: this tab delimited file lists, for each gene, the amount of overloading detected among its coding sequences, i.e. how much differential CDS output exists between samples. Only genes producing two or more distinct CDS (i.e. multi-protein genes) are listed here. | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
367 |
0 | 368 ------- |
369 | |
370 **Settings** | |
371 | |
372 All of the options have a default value. You can change any of them. Most of the options in Cuffdiff have been implemented here. | |
373 | |
374 ------ | |
375 | |
376 **Cuffdiff parameter list** | |
377 | |
378 This is a list of implemented Cuffdiff options:: | |
379 | |
380 -m INT Average fragment length (SE reads); default 200 | |
381 -s INT Fragment legnth standard deviation (SE reads); default 80 | |
382 -c INT The minimum number of alignments in a locus for needed to conduct significance testing on changes in that locus observed between samples. If no testing is performed, changes in the locus are deemed not significant, and the locus' observed changes don't contribute to correction for multiple testing. The default is 1,000 fragment alignments (up to 2,000 paired reads). | |
383 --FDR FLOAT The allowed false discovery rate. The default is 0.05. | |
384 --max-mle-iterations INT Sets the number of iterations allowed during maximum likelihood estimation of abundances. Default: 5000 | |
385 --library-norm-method Library Normalization method : Geometric (default), classic-fpkm, quartile | |
386 --dispersion-method Dispersion estimation method : Pooled (default), per-condition, blind, poisson | |
387 -u Multi read correction tells Cufflinks to do an initial estimation procedure to more accurately weight reads mapping to multiple locations in the genome. | |
388 -b ref.fasta bias correction. Bias detection and correction can significantly improve accuracy of transcript abundance estimates. | |
389 --no-effective-length-correction Use standard length correction | |
390 --no-length-correction Disable all length correction. | |
391 --library-type ff-firststrand,ff-secondstrand,ff-unstranded,fr-firstrand,fr-secondstrand,fr-unstranded,transfrags | |
392 --mask-file (gff3/gtf) Ignore all alignment within transcripts in this file | |
393 --time-series Treat provided sam files as time series | |
394 --compatible-hits-norm With this option, Cufflinks counts only those fragments compatible with some reference transcript towards the number of mapped fragments used in the FPKM denominator. Using this mode is generally recommended in Cuffdiff to reduce certain types of bias caused by differential amounts of ribosomal reads which can create the impression of falsely differentially expressed genes. | |
4
e20b05db0839
planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/cufflinks/cuffdiff commit 82ee6fc860c52c531b7a57bbb346ab1a67a434a5
devteam
parents:
3
diff
changeset
|
395 --total-hits-norm With this option, Cufflinks counts all fragments, including those not compatible with any reference transcript, towards the number of mapped fragments used in the FPKM denominator |
0 | 396 --max-bundle-frags Sets the maximum number of fragments a locus may have before being skipped. Skipped loci are listed in skipped.gtf. |
397 --num-frag-count-draws Cuffdiff will make this many draws from each transcript's predicted negative binomial random numbder generator. Each draw is a number of fragments that will be probabilistically assigned to the transcripts in the transcriptome. Used to estimate the variance-covariance matrix on assigned fragment counts. | |
398 --num-frag-assign-draws For each fragment drawn from a transcript, Cuffdiff will assign it this many times (probabilistically), thus estimating the assignment uncertainty for each transcript. Used to estimate the variance-covariance matrix on assigned fragment counts. | |
399 --min-reps-for-js-test Cuffdiff won't test genes for differential regulation unless the conditions in question have at least this many replicates. | |
400 </help> | |
401 <citations> | |
402 <citation type="doi">10.1038/nbt.1621</citation> | |
403 </citations> | |
404 </tool> |