Mercurial > repos > yufei-luo > differential_expression_analysis_pipeline_for_rnaseq_data
comparison DiffExpAnal/deseq.xml @ 0:63799b789162 draft
Uploaded
author | yufei-luo |
---|---|
date | Tue, 22 Jan 2013 10:07:03 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:63799b789162 |
---|---|
1 <tool id="DESEQ" name="DESEQ for differential expression analysis"> | |
2 <description>Differential expression analysis for reads count data</description> | |
3 <requirements> | |
4 <requirement type="package">R</requirement> | |
5 <requirement type="package">Biobase</requirement> | |
6 <requirement type="package">DESeq</requirement> | |
7 </requirements> | |
8 | |
9 <command interpreter="bash"> deseq.sh $inputFile $header $withOutReplicates $outHTML $outHTML.files_path $outComplete $outUP $outDown 2> $log </command> | |
10 | |
11 <inputs> | |
12 <param name="inputFile" type="data" label="Input File list" format="txt"/> | |
13 <param name="header" type="boolean" truevalue="1" falsevalue="0" checked="false" label="If there is a header for your count files, please choose this case."/> | |
14 <param name="withOutReplicates" type="boolean" truevalue="1" falsevalue="0" checked="false" label="If your data has not replicates, please choose this case."/> | |
15 | |
16 </inputs> | |
17 | |
18 <outputs> | |
19 <data format="HTML" name="outHTML" label="[DESEQ] Output HTML File" help="This output file shows all results images by DESeq analysis"/> | |
20 <data format="tabular" name="outComplete" label="[DESEQ] Output complete File"/> | |
21 <data format="tabular" name="outUP" label="[DESEQ] Output up File" help="This output file shows the genes of group1 which are overexpressed than those of group2"/> | |
22 <data format="tabular" name="outDown" label="[DESEQ] Output down File" help="This output file shows the genes of group1 which are less expressed than those of group2"/> | |
23 <data format="txt" name="log" label="[DESEQ] Output log File"/> | |
24 </outputs> | |
25 | |
26 <help> | |
27 </help> | |
28 </tool> |