Mercurial > repos > trinity_ctat > analyze_differential_expression
annotate analyze_diff_exp.xml @ 7:f51625f25d56 draft
Adding profile info and exit code behavior. Making version numbers consistent. Upping test number.
author | trinity_ctat |
---|---|
date | Fri, 06 Oct 2017 11:00:02 -0400 |
parents | 9b2226f8c2fe |
children | c556f5136cf2 |
rev | line source |
---|---|
7
f51625f25d56
Adding profile info and exit code behavior. Making version numbers consistent. Upping test number.
trinity_ctat
parents:
6
diff
changeset
|
1 <tool id="Analyze_Diff_Exp" name="Analyze_Differential_Expression" version="1.0.0" profile="17.05"> |
0 | 2 |
3 <description>Analyze differential expression</description> | |
4 <requirements> | |
5 <requirement type="package" version="2.7">python</requirement> | |
6 | 6 <requirement type="package" version="1.3.0">rsem</requirement> |
0 | 7 <requirement type="package">trinity</requirement> |
8 </requirements> | |
7
f51625f25d56
Adding profile info and exit code behavior. Making version numbers consistent. Upping test number.
trinity_ctat
parents:
6
diff
changeset
|
9 <command detect_errors="exit_code"> |
0 | 10 <![CDATA[ |
11 python $__tool_directory__/analyze_diff_exp_wrapper.py $EdgeRTarGz $TMM_Matrix_FPKM $Pvalue $Cvalue | |
12 ]]> | |
13 </command> | |
14 <inputs> | |
1
54f173578868
Changing input formats for analyze differential expression.
trinity_ctat
parents:
0
diff
changeset
|
15 <param name="EdgeRTarGz" label="EdgeR tar gz file" type="data" format="txt"/> |
54f173578868
Changing input formats for analyze differential expression.
trinity_ctat
parents:
0
diff
changeset
|
16 <param name="TMM_Matrix_FPKM" label="TMM Normalized FPKM matrix" type="data" format="tabular" /> |
0 | 17 <param name="Pvalue" label="P-value" value="0.05" type="float" /> |
18 <param name="Cvalue" label="C-value" value="0" type="float" /> | |
19 | |
20 </inputs> | |
21 <outputs> | |
22 <data format="data" name="diffExpr_matrix" label="${tool.name} on ${on_string}: Matrix" from_work_dir="diffExpr.matrix"/> | |
23 <data format="data" name="diffExpr_correlation_matrix" label="${tool.name} on ${on_string}: Sample_Correlation_Matrix" from_work_dir="diffExpr.matrix.log2.sample_cor.dat"/> | |
24 <data format="data" name="diffExpr_correlation_matrix_pdf" label="${tool.name} on ${on_string}: Sample_Correlation_Matrix_PDF" from_work_dir="diffExpr.matrix.log2.sample_cor_matrix.pdf"/> | |
25 <data format="data" name="Heatmap" label="${tool.name} on ${on_string}: Heatmap" from_work_dir="diffExpr.matrix.log2.centered.genes_vs_samples_heatmap.pdf"/> | |
26 </outputs> | |
27 <tests> | |
28 <test> | |
29 <param name="EdgeRTarGz" value="Sp.edgeR.tar.gz" ftype="tar" /> | |
30 <param name="TMM_Matrix_FPKM" value="Sp.TMM.EXPR.matrix" /> | |
31 <param name="Pvalue" value="0.05" /> | |
32 <param name="Cvalue" value="0.0" /> | |
33 | |
34 <output name="diffExpr_matrix" > | |
35 <assert_contents> | |
36 <has_line_matching expression=".+" /> | |
37 <has_line line="Sp_ds	Sp_hs" /> | |
38 <has_line_matching expression="TRINITY_DN.+" /> | |
39 </assert_contents> | |
40 </output> | |
41 <output name="diffExpr_correlation_matrix" file="Sp.diffExpr.matrix.log2.sample_cor.dat" /> | |
42 <output name="diffExpr_correlation_matrix_pdf" > | |
43 <assert_contents> | |
44 <has_line_matching expression=".+" /> | |
45 </assert_contents> | |
46 </output> | |
47 <output name="Heatmap" > | |
48 <assert_contents> | |
49 <has_line_matching expression=".+" /> | |
50 </assert_contents> | |
51 </output> | |
52 | |
53 </test> | |
54 </tests> | |
55 <help> | |
56 .. class:: infomark | |
57 | |
58 This tool filters differentially expressed transcripts derived from edgeR using a minimum fold change (C-value) which will be log2 transformed before use and a required significance (P-value) in the pairwise sample comparisons (after false discovery rate correction). | |
59 | |
60 If you are following the Trinity RNA-seq protocol please go here_ for a galaxy tool walk through or the Nature Protocols paper_. | |
61 | |
62 .. _here: https://github.com/trinityrnaseq/GalaxyTrinityProtocol/wiki | |
63 .. _paper: http://www.nature.com/nprot/journal/v8/n8/full/nprot.2013.084.html | |
64 </help> | |
65 | |
66 <citations> | |
67 <citation type="doi">10.1038/nbt.1883</citation> | |
68 </citations> | |
69 | |
70 </tool> |