Mercurial > repos > bimib > marea
view Marea/marea.xml @ 47:3af9d394367c draft
Uploaded
author | bimib |
---|---|
date | Wed, 19 Feb 2020 10:44:52 -0500 |
parents | 7b1971251c63 |
children | e4235b5231e4 |
line wrap: on
line source
<tool id="MaREA" name="Metabolic Reaction Enrichment Analysis" version="1.0.7"> <macros> <import>marea_macros.xml</import> </macros> <requirements> <requirement type="package" version="0.23.0">pandas</requirement> <requirement type="package" version="1.1.0">scipy</requirement> <requirement type="package" version="0.10.1">cobra</requirement> <requirement type="package" version="4.2.1">lxml</requirement> <requirement type="package" version="0.8.1">svglib</requirement> <requirement type="package" version="3.4.0">reportlab</requirement> </requirements> <command detect_errors="exit_code"> <![CDATA[ python $__tool_directory__/marea.py --tool_dir $__tool_directory__ --option $cond.type_selector --out_log $log #if $cond.type_selector == 'datasets': --input_datas #for $data in $cond.input_Datasets: ${data.input} #end for --names #for $data in $cond.input_Datasets: ${data.input_name} #end for --comparison ${cond.comparis.comparison} #if $cond.advanced.choice == 'true': --pValue ${cond.advanced.pValue} --fChange ${cond.advanced.fChange} --generate_svg ${cond.advanced.generateSvg} --generate_pdf ${cond.advanced.generatePdf} #else --pValue 0.05 --fChange 1.5 --generate_svg false --generate_pdf true --generate_ras false #end if #elif $cond.type_selector == 'dataset_class': --input_data ${input_data} --input_class ${input_class} --comparison ${cond.comparis.comparison} #if $cond.comparis.comparison == 'onevsmany' --control ${cond.comparis.controlgroup} #end if #if $cond.advanced.choice == 'true': --pValue ${cond.advanced.pValue} --fChange ${cond.advanced.fChange} --generate_svg ${cond.advanced.generateSvg} --generate_pdf ${cond.advanced.generatePdf} #else --pValue 0.05 --fChange 1.5 --generate_svg false --generate_pdf true #end if #end if ]]> </command> <inputs> <conditional name="cond"> <param name="type_selector" argument="--option" type="select" label="Input format:"> <option value="datasets" selected="true">RAS of group 1 + RAS of group 2 + ... + RAS of group N</option> <option value="dataset_class">RAS of all samples + sample group specification</option> </param> <when value="datasets"> <repeat name="input_Datasets" title="RAS dataset" min="2"> <param name="input" argument="--input_datas" type="data" format="tabular, csv, tsv" label="add dataset" /> <param name="input_name" argument="--names" type="text" label="Dataset's name:" value="Dataset" help="Default: Dataset" /> </repeat> <conditional name="comparis"> <param name="comparison" argument="--comparison" type="select" label="Groups comparison:"> <option value="manyvsmany" selected="true">One vs One</option> <option value="onevsrest">One vs All</option> <option value="onevsmany">One vs Control</option> </param> <when value="onevsmany"> <param name="controlgroup" argument="--controlgroup" type="text" label="Control group label:" value="0" help="Name of group label to be compared to others"/> </when> </conditional> <conditional name="advanced"> <param name="choice" type="boolean" checked="false" label="Use advanced options?" help="Use this options to choose custom parameters for evaluation: pValue, Fold-Change threshold, how to solve (A and NaN) and specify output maps."> <option value="true" selected="true">No</option> <option value="false">Yes</option> </param> <when value="false"></when> <when value="true"> <conditional name="cond_map"> <param name="choice" type="boolean" checked="false" label="Use custom map?" help="Use this option only if you have generated RAS using a custom set of rules"> <option value="false" selected="true">No</option> <option value="true">Yes</option> </param> <when value="true"> <param name="Custom_map" argument="--custom_map" type="data" format="xml, svg" label="custom-map.svg"/> </when> </conditional> <param name="pValue" argument="--pValue" type="float" size="20" value="0.01" max="1" min="0" label="P-value threshold:" help="min value 0" /> <param name="fChange" argument="--fChange" type="float" size="20" value="1.2" min="1" label="Fold-Change threshold:" help="min value 1" /> <param name="generateSvg" argument="--generateSvg" type="boolean" checked="false" label="Generate SVG map" help="should the program generate an editable svg map of the processes?" /> <param name="generatePdf" argument="--generatePdf" type="boolean" checked="true" label="Generate PDF map" help="should the program return a non editable (but displayble) pdf map of the processes?" /> </when> </conditional> </when> <when value="dataset_class"> <param name="input_data" argument="--input_data" type="data" format="tabular, csv, tsv" label="RAS of all samples" /> <param name="input_class" argument="--input_class" type="data" format="tabular, csv, tsv" label="Sample group specification" /> <conditional name="comparis"> <param name="comparison" argument="--comparison" type="select" label="Groups comparison:"> <option value="manyvsmany" selected="true">One vs One</option> <option value="onevsrest">One vs All</option> <option value="onevsmany">One vs Control</option> </param> <when value="onevsmany"> <param name="controlgroup" argument="--controlgroup" type="text" label="Control group label:" value="0" help="Name of group label to be compared to others"/> </when> </conditional> <conditional name="advanced"> <param name="choice" type="boolean" checked="false" label="Use advanced options?" help="Use this options to choose custom parameters for evaluation: pValue, Fold-Change threshold, how to solve (A and NaN) and specify output maps."> <option value="true" selected="true">No</option> <option value="false">Yes</option> </param> <when value="false"></when> <when value="true"> <conditional name="cond_map"> <param name="choice" type="boolean" checked="false" label="Use custom map?" help="Use this option only if you have generated RAS using a custom set of rules"> <option value="false" selected="true">No</option> <option value="true">Yes</option> </param> <when value="true"> <param name="Custom_map" argument="--custom_map" type="data" format="xml, svg" label="custom-map.svg"/> </when> </conditional> <param name="pValue" argument="--pValue" type="float" size="20" value="0.01" max="1" min="0" label="P-value threshold:" help="min value 0" /> <param name="fChange" argument="--fChange" type="float" size="20" value="1.2" min="1" label="Fold-Change threshold:" help="min value 1" /> <param name="generateSvg" argument="--generateSvg" type="boolean" checked="false" label="Generate SVG map" help="should the program generate an editable svg map of the processes?" /> <param name="generatePdf" argument="--generatePdf" type="boolean" checked="true" label="Generate PDF map" help="should the program return a non editable (but displayble) pdf map of the processes?" /> </when> </conditional> </when> </conditional> </inputs> <outputs> <data format="txt" name="log" label="MaREA - Log" /> <collection name="results" type="list" label="MaREA - Results"> <discover_datasets pattern="__name_and_ext__" directory="result"/> </collection> </outputs> <help> <![CDATA[ What it does ------------- This tool analyzes RNA-seq dataset(s) as described in Graudenzi et al."`MaREA`_: Metabolic feature extraction, enrichment and visualization of RNAseq data" bioRxiv (2018): 248724. Accepted files are: - option 1) two or more RNA-seq datasets, each referring to samples in a given condition/class. The user can specify a label for each class (as e.g. "*classA*" and "*classB*"); - option 2) one RNA dataset and one class-file specifying the class/condition each sample belongs to. Optional files: - custom GPR (Gene-Protein-Reaction) rules. Two accepted formats: * (Cobra Toolbox and CobraPy compliant) xml of metabolic model; * .csv file specifyig for each reaction ID (column 1) the corresponding GPR rule (column 2). - custom svg map. Graphical elements must have the same IDs of reactions. See HmrCore svg map for an example. The tool generates: 1) a tab-separated file: reporting fold-change and p-values of reaction activity scores (RASs) between a pair of conditions/classes; 2) a metabolic map file (downlodable as .svg): visualizing up- and down-regulated reactions between a pair of conditions/classes; 3) a log file (.txt). RNA-seq datasets format: tab-separated text files, reporting the expression level (e.g., TPM, RPKM, ...) of each gene (row) for a given sample (column). Header: sample ID. Class-file format: each row of the class-file reports the sample ID (column1) and the label of the class/condition the sample belongs to (column 2). To calculate P-Values and Fold-Changes and to generate maps, comparisons are performed for each possible pair of classes. Output files will be named as classA_vs_classB. Reactions will conventionally be reported as up-regulated (down-regulated) if they are significantly more (less) active in class having label "classA". Example input ------------- **"Custom Rules"** option: Custom Rules Dastaset: @CUSTOM_RULES_EXEMPLE@ **"RNAseq of group 1 + RNAseq of group 2 + ... + RNAseq of group N"** option: RNA-seq Dataset 1: @DATASET_EXEMPLE1@ RNA-seq Dataset 2: @DATASET_EXEMPLE2@ **"RNAseq of all samples + sample group specification"** option: RNA-seq Dataset: @DATASET_EXEMPLE1@ Class-file: +------------+------------+ | Patient_ID | class | +============+============+ | TCGAAA3529 | MSI | +------------+------------+ | TCGAA62671 | MSS | +------------+------------+ | TCGAA62672 | MSI | +------------+------------+ | .. class:: infomark **TIP**: If your data is not TAB delimited, use `Convert delimiters to TAB`_. .. class:: infomark **TIP**: If your dataset is not split into classes, use `MaREA cluster analysis`_. @REFERENCE@ .. _MaREA: https://www.biorxiv.org/content/early/2018/01/16/248724 .. _Convert delimiters to TAB: https://usegalaxy.org/?tool_id=Convert+characters1&version=1.0.0&__identifer=6t22teyofhj .. _MaREA cluster analysis: http://link del tool di cluster.org ]]> </help> <expand macro="citations" />undefined</tool>