annotate aurora_wgcna.xml @ 7:120af5453b14 draft

Uploaded
author spficklin
date Fri, 06 Dec 2019 10:54:58 -0500
parents 58b01fa2cc81
children 17b630e2bc35
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
1 <tool id="aurora_wgcna" name="Aurora Galaxy WGCNA" version="1.0.0">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
2 <description>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
3 Identify gene co-expression network modules using WGCNA.
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
4 </description>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
5 <requirements>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
6 <requirement type="package" version="2.7.3">pandoc</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
7 <requirement type="package" version="1.20.3">r-getopt</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
8 <requirement type="package" version="1.12">r-rmarkdown</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
9 <requirement type="package" version="1.8.4">r-plyr</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
10 <requirement type="package" version="0.10">r-dt</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
11 <requirement type="package" version="0.4.0">r-htmltools</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
12 <requirement type="package" version="3.2.1">r-ggplot2</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
13 <requirement type="package" version="1.4.3">r-reshape2</requirement>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
14 <requirement type="package" version="6.0_83">r-caret</requirement>
7
120af5453b14 Uploaded
spficklin
parents: 6
diff changeset
15 <requirement type="package" version="1.68">r-wgcna</requirement>
120af5453b14 Uploaded
spficklin
parents: 6
diff changeset
16 <requirement type="package" version="20180414">texlive-core</requirement>
6
58b01fa2cc81 Uploaded
spficklin
parents: 5
diff changeset
17 <requirement type="package" version="0.12">r-tinytex</requirement>
1
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
18 </requirements>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
19 <stdio>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
20 <regex match="Execution halted"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
21 source="both"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
22 level="fatal"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
23 description="Execution halted." />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
24 <regex match="Error in"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
25 source="both"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
26 level="fatal"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
27 description="An undefined error occured, please check your intput carefully and contact your administrator." />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
28 <regex match="Fatal error"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
29 source="both"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
30 level="fatal"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
31 description="An undefined error occured, please check your intput carefully and contact your administrator." />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
32 </stdio>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
33 <command>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
34 <![CDATA[
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
35 export TOOL_INSTALL_DIR='${__tool_directory__}' &&
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
36
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
37 Rscript '${__tool_directory__}/aurora_wgcna_render.R'
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
38 -e $expression_data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
39 -s $min_cluster_size
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
40 -b $block_size
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
41 -j $hard_threshold
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
42 #if $trait_info.trait_data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
43 -t $trait_info.trait_data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
44 -c $trait_info.sname_col
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
45 #if $trait_info.missing_value2
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
46 -o "$trait_info.missing_value2"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
47 #else
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
48 -o "NA"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
49 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
50 #if $trait_info.one_hot_cols
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
51 -y $trait_info.one_hot_cols
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
52 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
53 #if $trait_info.ignore_cols
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
54 -x $trait_info.ignore_cols
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
55 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
56 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
57 #if $height_cut
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
58 -h $height_cut
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
59 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
60 #if $power
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
61 -p $power
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
62 #end if
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
63 -l $render_log_file
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
64 -a $r_data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
65 -k $gene_module_file
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
66 -w $network_edges_file
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
67 -g $gene_association_file
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
68 -m $module_association_file
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
69 -q $module_association_report
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
70 -r $network_construction_report
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
71 -z $updated_trait_matrix
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
72 -d $filtered_GEM
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
73 -i $missing_value1
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
74 ]]>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
75 </command>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
76 <inputs>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
77 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
78 type="data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
79 name="expression_data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
80 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
81 optional="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
82 label="Gene expression data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
83 help="The gene expression data is an n x m matrix where n rows are the genes, m columns are the samples and the elements represent gene expression levels (derived either from Microarray or RNA-Seq). The matrix should be stored in a comma-separated (CSV) file and it must have a header. The gene names must appear as the first column of data in the file."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
84 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
85 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
86 type="text"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
87 value="NA"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
88 name="missing_value1"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
89 optional="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
90 label="Missing Value Identifier"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
91 help="Within the gene expression data some genes may have missing values. If so, please indicate the text that is used to identify a missing value. Some common examples include: NA, 0.0, 0, -Inf. Any expression level that exactly matches the value provided will be considered a missing value."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
92 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
93 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
94 type="float"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
95 value=""
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
96 name="height_cut"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
97 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
98 label="Outlier Dendrogram Cut Height"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
99 help="When checking for outliers, WGCNA performs hierarchical clustering. The resulting dendrogram can be cut at the given height to remove outliers. If no value is provided a cut height will automatically be determined. Try running this tool first without providing a value. Return and set a value if the results are not adequate."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
100 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
101 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
102 type="integer"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
103 value=""
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
104 name="power"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
105 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
106 label="Power"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
107 help="Prior to network construction, WGCNA recommends that the gene expression data is raised to a power. The exact power that should be used will be automatically determined. Try running this tool first without providing a value. Return and set a value if the results are not adequate."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
108 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
109 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
110 type="integer"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
111 value="30"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
112 name="min_cluster_size"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
113 optional="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
114 label="Minimum Module Size"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
115 help="The minimum module size. Modules smaller than this will not be included in the network."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
116 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
117 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
118 type="integer"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
119 value="5000"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
120 min="1000"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
121 max="10000"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
122 name="block_size"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
123 optional="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
124 label="Block Size"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
125 help="Constructing a network can use an extreme amount of memory if the number of genes is high. The block size enables WGCNA to divide the data into blocks of genes with similar expression reducing the amount of memory used. The block size indicates the maximum number of genes that can be used in a block. The total number of blocks used will be the total genes divided by this number (plus 1 for any remainder)."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
126 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
127 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
128 type="float"
5
1915371bea02 Uploaded
spficklin
parents: 1
diff changeset
129 value="0.2"
1
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
130 name="hard_threshold"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
131 optional="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
132 label="Hard Threshold"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
133 min="0"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
134 max="1"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
135 help="While WGCNA uses a soft thresholding approach for finding modules and constructing gene similarity, when exporting the network for display as a graph a hard threshold is still required. For WGCNA, the threhshold is applied to the Euclidian distance between all genes. But, there is no set prescribed method to decide on a proper hard threshold value. Set a threshold now, then you can apply filters later (such as in Cytoscape) to remove low weighted edges if desired."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
136 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
137 <section name="trait_info" title="Trait/Phenotype" expanded="true">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
138 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
139 type="data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
140 name="trait_data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
141 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
142 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
143 label="Trait/Phenotype Data Matrix"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
144 help="The trait/phenotype data is an n x m matrix where n is the samples and m are the features such as experimental condition, biosample properties, traits or phenotype values. The matrix should be stored in a comma-separated (CSV) file. It must have a header."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
145 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
146 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
147 type="text"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
148 value="NA"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
149 name="missing_value2"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
150 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
151 label="Missing Value Identifier"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
152 help="Within the trait data some columns may have missing values. If so, please indicate the text that is used to identify a missing value. Some common examples include: NA, 0.0, 0, -Inf. Any value that exactly matches the value provided will be considered a missing value."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
153 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
154 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
155 type="integer"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
156 value="1"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
157 name="sname_col"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
158 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
159 label="Sample Name Column"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
160 help="The number of the column (starting from 1) in the sample annotation data file where the sample name column is found."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
161 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
162 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
163 type="text"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
164 value=""
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
165 name="one_hot_cols"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
166 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
167 label="Categorical Columns"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
168 help="Categorical columns in the sample daa matrix must be '1-hot encoded'. This means that each categorical column is expanded into new columns (one for each category) and the values for the new columns are set to 1 if the sample has the category and 0 if not. This value should be a comma-separated list of column names with no spaces between column names. Please make sure the column headers only have alphanumeric characters and underscores. If you do not specify categorical column names then they will be converted to factors and treated as ordinal data."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
169 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
170 <param
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
171 type="text"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
172 value=""
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
173 name="ignore_cols"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
174 optional="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
175 label="Columns to Ignore"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
176 help="The names of columns in the sample data matrix that should be ignored. This value should be a comma-separated list of column names with no spaces between column names. Please make sure the column headers only have alphanumeric characters and underscores."
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
177 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
178 </section>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
179 </inputs>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
180 <outputs>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
181 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
182 name="network_construction_report"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
183 format="pdf"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
184 label="network_construction_report.pdf"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
185 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
186 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
187 name="filtered_GEM"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
188 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
189 label="filtered_GEM.csv">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
190 </data>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
191 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
192 name="gene_module_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
193 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
194 label="gene_module_file.csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
195 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
196 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
197 name="network_edges_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
198 format="tabular"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
199 label="network_edges.txt"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
200 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
201 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
202 name="module_association_report"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
203 format="pdf"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
204 label="module_association_report.pdf">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
205 <filter>trait_data != None</filter>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
206 </data>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
207 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
208 name="gene_association_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
209 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
210 label="gene_association.csv">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
211 <filter>trait_data != None</filter>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
212 </data>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
213 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
214 name="module_association_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
215 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
216 label="module_association.csv">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
217 <filter>trait_data != None</filter>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
218 </data>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
219 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
220 name="updated_trait_matrix"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
221 format="csv"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
222 label="updated_trait_matrix.csv">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
223 <filter>trait_data != None</filter>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
224 </data>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
225 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
226 name="render_log_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
227 format="txt"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
228 label="render_log_file"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
229 hidden="false"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
230 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
231 <data
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
232 name="r_data"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
233 format="rdata"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
234 label="aurora_wgcna.RData"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
235 hidden="true"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
236 />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
237 <collection name="figures" type="list" label="Figures">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
238 <discover_datasets
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
239 pattern="__designation_and_ext__"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
240 directory="figures"
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
241 visible="false" />
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
242 </collection>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
243 </outputs>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
244 <tests>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
245 <test>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
246 <param name='expression_data' value="LiverFemale3600.gem.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
247 <output name="gene_module_file" file="gene_module.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
248 <output name="network_edges_file" file="network_edges.txt"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
249 <output name="network_construction_report" file="network_construction_report.html"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
250 </test>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
251 <test>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
252 <param name='expression_data' value="LiverFemale3600.gem.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
253 <param name='trait_data' value="ClinicalTraits.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
254 <output name="gene_module_file" file="gene_module.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
255 <output name="network_edges_file" file="network_edges.txt"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
256 <output name="gene_association_file" file="gene_association_file.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
257 <output name="module_association_file" file="module_association_file.csv"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
258 <output name="module_association_report" file="module_association_report.html"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
259 <output name="network_construction_report" file="network_construction_report.html"/>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
260 </test>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
261 </tests>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
262 <help><![CDATA[
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
263 This tool is a wrapper for the WGCNA R library. Please see the online
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
264 WGCNA tutorial for further details.
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
265 ]]>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
266 </help>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
267 <citations>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
268 <citation type="bibtex">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
269 @article{langfelder2008wgcna,
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
270 title={WGCNA: an R package for weighted correlation network analysis},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
271 author={Langfelder, Peter and Horvath, Steve},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
272 journal={BMC bioinformatics},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
273 volume={9},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
274 number={1},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
275 pages={559},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
276 year={2008},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
277 publisher={BioMed Central}
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
278 }
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
279 </citation>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
280 <citation type="bibtex">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
281 @article{allaire2016rmarkdown,
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
282 title={rmarkdown: Dynamic Documents for R, 2016},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
283 author={Allaire, J and Cheng, Joe and Xie, Yihui and McPherson, Jonathan and Chang, Winston and Allen, Jeff and Wickham, Hadley and Atkins, Aron and Hyndman, Rob},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
284 journal={R package version 0.9},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
285 volume={6},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
286 year={2016}
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
287 }
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
288 </citation>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
289 <citation type="bibtex">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
290 @book{xie2015dynamic,
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
291 title={Dynamic Documents with R and knitr},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
292 author={Xie, Yihui},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
293 volume={29},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
294 year={2015},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
295 publisher={CRC Press}
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
296 }
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
297 </citation>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
298 <citation type="bibtex">
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
299 @misc{dt2016,
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
300 title = {DT: A Wrapper of the JavaScript Library 'DataTables'},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
301 author = {Yihui Xie},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
302 year = {2016},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
303 note = {R package version 0.2},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
304 url = {https://CRAN.R-project.org/package=DT},
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
305 }
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
306 </citation>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
307 </citations>
c18d0db68d51 Uploaded
spficklin
parents:
diff changeset
308 </tool>