Mercurial > repos > bgruening > diffbind
comparison diffbind.xml @ 0:8d48d5591389 draft
Uploaded
| author | bgruening |
|---|---|
| date | Mon, 13 Jan 2014 17:20:14 -0500 |
| parents | |
| children | 0753d019a353 |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:8d48d5591389 |
|---|---|
| 1 <tool id="diffbind" name="DiffBind" version="2.0.1"> | |
| 2 <description> differential binding analysis of ChIP-Seq peak data</description> | |
| 3 <requirements> | |
| 4 <requirement type="binary">Rscript</requirement> | |
| 5 <requirement type="R-module">DESeq2</requirement> | |
| 6 <requirement type="package" version="3.0.1">R_3_0_1</requirement> | |
| 7 <requirement type="package" version="1.0.17">deseq2</requirement> | |
| 8 <requirement type="package" version="2.13">diffbind</requirement> | |
| 9 </requirements> | |
| 10 <command interpreter="Rscript"> | |
| 11 #import simplejson | |
| 12 diffbind.R | |
| 13 -i $infile | |
| 14 -o $outfile | |
| 15 -p $plots | |
| 16 -f $format | |
| 17 </command> | |
| 18 <stdio> | |
| 19 <regex match="Execution halted" | |
| 20 source="both" | |
| 21 level="fatal" | |
| 22 description="Execution halted." /> | |
| 23 <regex match="Input-Error 01" | |
| 24 source="both" | |
| 25 level="fatal" | |
| 26 description="Error in your input parameters: Make sure you only apply factors to selected samples." /> | |
| 27 <regex match="Error in" | |
| 28 source="both" | |
| 29 level="fatal" | |
| 30 description="An undefined error occured, please check your intput carefully and contact your administrator." /> | |
| 31 </stdio> | |
| 32 <inputs> | |
| 33 <repeat name="samples" title="Samples" min="2"> | |
| 34 <param name="sample_id" type="text" value="Sample ID" label="Specify a sample id" help="e.g. BT474.1-" /> | |
| 35 <param name="tissue" type="text" value="Tissue" label="Specify the tissue" help="e.g. BT474" /> | |
| 36 <param name="factor" type="text" value="Factor Name" label="Specify a factor name" help="e.g. ER" /> | |
| 37 <param name="condition" type="text" value="Condition" label="Specify the condition" help="e.g. Resistent" /> | |
| 38 <param name="replicate" type="int" value="Replicate" label="Specify the replicate number" help="e.g. 1" /> | |
| 39 <param format="bam" name="bamreads" type="data" label="Read BAM file" help="Specify the Read BAM file, used for Peak calling."/> | |
| 40 <param format="bam" name="bamcontrol" type="data" label="Control BAM file" help="Specify the Control BAM file, used for Peak calling."/> | |
| 41 <param format="bam" name="bamreads" type="data" label="Peak file" help="Result of your Peak calling experiment."/> | |
| 42 </repeat> | |
| 43 <param name="pdf" type="boolean" truevalue="" falsevalue="" checked="true" | |
| 44 label="Visualising the analysis results" | |
| 45 help="output an additional PDF files" /> | |
| 46 <param name="format" type="select" label="Output Format"> | |
| 47 <option value="bed">BED</option> | |
| 48 <option value="gff">GFF</option> | |
| 49 <option value="wig">WIG</option> | |
| 50 </param> | |
| 51 </inputs> | |
| 52 <configfiles> | |
| 53 <configfile name="infile"> | |
| 54 SampleID,Tissue,Factor,Condition,Replicate,bamReads,bamControl,Peaks | |
| 55 #for $sample in $samples: | |
| 56 $sample.sample_id,$sample.tissue,$sample.factor,$sample.condition,$sample.replicate,$sample.bamreads,$sample.bamcontrol,$sample.peaks | |
| 57 #end for | |
| 58 </configfile> | |
| 59 </configfiles> | |
| 60 <outputs> | |
| 61 <outputs> | |
| 62 <data format="bed" name="outfile" label="Differential binding sites on ${on_string}"> | |
| 63 <change_format> | |
| 64 <when input="format" value="wig" format="wig" /> | |
| 65 <when input="format" value="gff" format="gff" /> | |
| 66 </change_format> | |
| 67 </data> | |
| 68 <data format="pdf" name="plots" label="DESeq2 plots on ${on_string}"> | |
| 69 <filter>pdf == True</filter> | |
| 70 </data> | |
| 71 </outputs> | |
| 72 | |
| 73 <help> | |
| 74 | |
| 75 .. class:: infomark | |
| 76 | |
| 77 **What it does** | |
| 78 | |
| 79 | |
| 80 ------ | |
| 81 | |
| 82 **References** | |
| 83 | |
| 84 DiffBind_ Authors: Rory Stark, Gordon Brown | |
| 85 | |
| 86 .. _DiffBind: http://www.bioconductor.org/packages/release/bioc/html/DiffBind.html | |
| 87 | |
| 88 Wrapper authors: Bjoern Gruening, Pavankumar Videm | |
| 89 | |
| 90 </help> | |
| 91 </tool> |
