Mercurial > repos > trinity_ctat > ctat_analyze_differential_expression
comparison ctat_analyze_differential_expression.xml @ 0:2ca97cd84ce3 draft default tip
Upload ctat tools.
author | trinity_ctat |
---|---|
date | Tue, 17 Jul 2018 11:49:33 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:2ca97cd84ce3 |
---|---|
1 <tool id="ctat_analyze_differential_expression" name="ctat_analyze_differential_expression" version="1.0.0" profile="17.05"> | |
2 | |
3 <description>Analyze differential expression</description> | |
4 <requirements> | |
5 <requirement type="package" version="2.7">python</requirement> | |
6 <requirement type="package">subprocess32</requirement> | |
7 <requirement type="package">bzip2</requirement> | |
8 <requirement type="package" version="1.3.0">rsem</requirement> | |
9 <requirement type="package" version="3">bioconductor-edger</requirement> | |
10 <requirement type="package" version="2">bioconductor-qvalue</requirement> | |
11 <requirement type="package">r-cluster</requirement> | |
12 <requirement type="package">r-fastcluster</requirement> | |
13 <requirement type="package" version="2.6.6">trinity</requirement> | |
14 </requirements> | |
15 <command detect_errors="exit_code"> | |
16 <![CDATA[ | |
17 python $__tool_directory__/ctat_analyze_differential_expression.py $EdgeRTarGz $Counts_matrix $Pvalue $Cvalue | |
18 ]]> | |
19 </command> | |
20 <inputs> | |
21 <param name="EdgeRTarGz" label="EdgeR tar gz file" type="data" format="txt"/> | |
22 <param name="Counts_matrix" label="Counts Matrix" type="data" format="tabular" /> | |
23 <param name="Pvalue" label="P-value" value="0.05" type="float" /> | |
24 <param name="Cvalue" label="C-value" value="0" type="float" /> | |
25 | |
26 </inputs> | |
27 <outputs> | |
28 <data format="data" name="diffExpr_matrix" label="${tool.name} on ${on_string}: Matrix" from_work_dir="diffExpr.matrix"/> | |
29 <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"/> | |
30 <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"/> | |
31 <data format="data" name="Heatmap" label="${tool.name} on ${on_string}: Heatmap" from_work_dir="diffExpr.matrix.log2.centered.genes_vs_samples_heatmap.pdf"/> | |
32 </outputs> | |
33 <tests> | |
34 <test> | |
35 <param name="EdgeRTarGz" value="Sp.edgeR.tar.gz" ftype="tar" /> | |
36 <param name="TMM_Matrix_FPKM" value="Sp.TMM.EXPR.matrix" /> | |
37 <param name="Pvalue" value="0.05" /> | |
38 <param name="Cvalue" value="0.0" /> | |
39 | |
40 <output name="diffExpr_matrix" > | |
41 <assert_contents> | |
42 <has_line_matching expression=".+" /> | |
43 <has_line line="Sp_ds	Sp_hs" /> | |
44 <has_line_matching expression="TRINITY_DN.+" /> | |
45 </assert_contents> | |
46 </output> | |
47 <output name="diffExpr_correlation_matrix" file="Sp.diffExpr.matrix.log2.sample_cor.dat" /> | |
48 <output name="diffExpr_correlation_matrix_pdf" > | |
49 <assert_contents> | |
50 <has_line_matching expression=".+" /> | |
51 </assert_contents> | |
52 </output> | |
53 <output name="Heatmap" > | |
54 <assert_contents> | |
55 <has_line_matching expression=".+" /> | |
56 </assert_contents> | |
57 </output> | |
58 | |
59 </test> | |
60 </tests> | |
61 <help> | |
62 .. class:: infomark | |
63 | |
64 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). | |
65 | |
66 If you are following the Trinity RNA-seq protocol please go here_ for a galaxy tool walk through or the Nature Protocols paper_. | |
67 | |
68 .. _here: https://github.com/trinityrnaseq/GalaxyTrinityProtocol/wiki | |
69 .. _paper: http://www.nature.com/nprot/journal/v8/n8/full/nprot.2013.084.html | |
70 </help> | |
71 | |
72 <citations> | |
73 <citation type="doi">10.1038/nbt.1883</citation> | |
74 </citations> | |
75 | |
76 </tool> |