Mercurial > repos > vipints > rdiff
annotate rDiff/galaxy/rdiff.xml @ 3:29a698dc5c7e default tip
Merge multiple heads.
author | Dave Bouvier <dave@bx.psu.edu> |
---|---|
date | Mon, 27 Jan 2014 14:15:36 -0500 |
parents | 233c30f91d66 |
children |
rev | line source |
---|---|
0 | 1 <tool id="rdiff-web" name="rDiff" version="0.3"> |
2 <description>Determines differentially expressed transcripts from read alignments</description> | |
3 <command interpreter="bash"> | |
2
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
4 rdiff_run.sh |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
5 $test_meth |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
6 $anno_input |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
7 $read_length |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
8 $rdiff_out $rdiff_out.extra_files_path |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
9 ## |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
10 ## replicate groups |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
11 ## |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
12 #for $i in $replicate_groups |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
13 #for $j in $i.replicates |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
14 $j.bam_alignment? |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
15 #end for |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
16 : |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
17 #end for |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
18 |
0 | 19 >> $Log_File |
20 </command> | |
21 <inputs> | |
22 | |
23 <!-- genome annotation in GFF format --> | |
2
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
24 <param format="gff,gtf,gff3" name="anno_input" type="data" label="Genome annotation file" help="A tab delimited format for storing sequence features and annotations(GFF/GTF/GFF3)"/> |
0 | 25 |
26 <!-- RNA-seq samples and corresponding replicates --> | |
27 <repeat name="replicate_groups" title="Sample" min="2" max="2"> | |
28 <repeat name="replicates" title="Replicate"> | |
29 <param format="bam" name="bam_alignment" type="data" label="BAM alignment file" help="BAM is the binary version of the SAM format, a tab-delimited text file that contains sequence alignment data."/> | |
30 </repeat> | |
31 </repeat> | |
32 | |
2
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
33 <!-- rDiff test method --> |
0 | 34 <param name="test_meth" type="select" label="rDiff testing method" help="Statistical test on differential transcript expression data." > |
35 <option value="poisson">Poisson</option> | |
36 <option value="param">Parametric</option> | |
37 <option value="nonparam">Nonparametric</option> | |
38 </param> | |
2
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
39 |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
40 <!-- read length uesd in the experiment--> |
0 | 41 <param name="read_length" type="text" value="75" help="default 75 nucleotide." label="Read length from sequencing experiment"/> |
42 | |
43 </inputs> | |
44 | |
45 <outputs> | |
2
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
46 <data format="txt" name="rdiff_out" label="${tool.name} on ${on_string}: Differential Expression" /> |
233c30f91d66
updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
vipints <vipin@cbio.mskcc.org>
parents:
0
diff
changeset
|
47 <data format="txt" name="Log_File" label="${tool.name} on ${on_string}: Log"/> |
0 | 48 </outputs> |
49 | |
50 <help> | |
51 | |
52 .. class:: infomark | |
53 | |
54 **What it does** | |
55 | |
56 rDiff_ is a tool for differential expression testing of RNA-Seq data. | |
57 | |
58 .. _rDiff: http://bioweb.me/rdiff | |
59 | |
60 </help> | |
61 </tool> |