comparison networkVar.xml @ 0:d0b77b926863 draft

"planemo upload for repository https://gitlab.com/bilille/galaxy-viscorvar commit 85dac6b13a9adce48b47b2b8cb28d2319ae9c1ca-dirty"
author ppericard
date Tue, 23 Jun 2020 19:57:35 -0400
parents
children e93350dc99f1
comparison
equal deleted inserted replaced
-1:000000000000 0:d0b77b926863
1 <tool id="networkVar" name="networkVar" version="1.0" profile="16.04" workflow_compatible="true">
2
3 <description>creates a network between selected variables of datasets and the response variables. In the network, the similarity between two variables is associated with the link between these two variables.</description>
4
5 <requirements>
6 <requirement type="package" version="6.12">bioconductor-mixomics</requirement> <!-- Remove when viscorvar is available via conda -->
7 <requirement type="package" version="1.2">r-igraph</requirement>
8 <requirement type="package" version="2.0">r-argparse</requirement>
9 </requirements>
10
11 <stdio>
12 <!-- <exit_code range="1:" level="fatal" /> -->
13 </stdio>
14
15 <command detect_errors="aggressive">
16 <![CDATA[
17 Rscript
18 ${__tool_directory__}/networkVar_wrapper.R
19 --mat_similarity_rdata ${mat_similarity_rdata}
20 --var_list_file ${var_list_file}
21 --response_var ${select_response_var}
22 --output_graph ${output_graph}
23 ]]>
24 </command>
25
26 <inputs>
27 <param name="mat_similarity_rdata" type="data" format="rdata"
28 label="Input computeMatSimilarity RData file"
29 help="output RData file from computeMatSimilarity"/>
30 <param name="var_list_file" type="data" format="tabular"
31 label="Variables list file"
32 help="selected variables output tabular file from circleCor"/>
33
34 <!-- Fichier avec noms de gènes/variables, donné par l'utilisateur -->
35 <!-- <param name="var_of_interest_file" type="data" format="txt" optional="true"
36 label="Variables of interest (Optional)"
37 help="these variables have to belong to datasets that can be superimposed"/> -->
38
39 <param name="response_var_list" type="data" format="tabular"
40 label="List of response variables"
41 help="output *_response_var.tsv file from matCorAddVar"/>
42 <param name="select_response_var" type="select" display="checkboxes" multiple="true"
43 label="Response variables"
44 help="response variables that will be plotted in the network">
45 <!-- <param name="select_responses_var" type="select" multiple="true" label="Response variables"> -->
46 <options from_dataset="response_var_list">
47 <column name="value" index="0"/>
48 <filter type="unique_value" column="0"/>
49 <filter type="sort_by" name="sorted_value" column="0"/>
50 </options>
51 </param>
52 </inputs>
53
54 <outputs>
55 <data name="output_graph" format="xml" label="${tool.name}_graph.graphml" />
56 </outputs>
57
58 <tests>
59 </tests>
60
61 <help>
62 </help>
63
64 </tool>