Mercurial > repos > saketkc > oncodrivefm
comparison tools/oncodrivefm_tool/oncodrivefm_tool.xml @ 0:8447ba178b06
Init
author | Saket Choudhary <saketkc@gmail.com> |
---|---|
date | Wed, 20 Nov 2013 01:15:34 +0530 |
parents | |
children | 386fa4776fde |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8447ba178b06 |
---|---|
1 <tool id="oncodrivefm_tool" name="OncodriveFM"> | |
2 <description>OncodriveFM </description> | |
3 <tool_dependency> | |
4 <package name="oncodrivefm"> | |
5 <install version="0.6-dev"> | |
6 <actions> | |
7 <action type="setup_virtualenv">distribute</action> | |
8 <action type="setup_virtualenv">python-dateutil==2.1</action> | |
9 <action type="setup_virtualenv">pytz==2013b</action> | |
10 <action type="setup_virtualenv">numpy==1.7.1</action> | |
11 <action type="setup_virtualenv">scipy==0.12.0</action> | |
12 <action type="setup_virtualenv">pandas==0.12.0</action> | |
13 <action type="setup_virtualenv">statsmodels==0.4.3</action> | |
14 <action type="setup_virtualenv">https://bitbucket.org/bbglab/oncodrivefm/get/master.tar.gz</action> | |
15 </actions> | |
16 </install> | |
17 <readme>OncodriveFm avalable at https://bitbucket.org/bbglab/oncodrivefm/</readme> | |
18 </package> | |
19 </tool_dependency> | |
20 | |
21 <command interpreter="python"> | |
22 #if $mappingpathcondition.hasmapfile=="yes" | |
23 oncodrivefm_tool.py -N $samplings -e $estimator --gt $gene_threshold --pt $pathway_threshold -s $slices -m $mapping_path -o1 $output1 -o2 $output2 -i $input | |
24 #else | |
25 oncodrivefm_tool.py -N $samplings -e $estimator --gt $gene_threshold --pt $pathway_threshold -s $slices -o1 $output1 -o2 $output2 -i $input | |
26 #end if | |
27 </command> | |
28 <inputs> | |
29 <param name="input" format="tabular" type="data" label="Input" /> | |
30 <param name="samplings" type="integer" label="Samplings" help="Number of samplings to compute the FM bias pvalue" optional="true" value="10000"/> | |
31 | |
32 <param name="estimator" type="select" label="Estimator" help="Test estimator for computation" optional="true"> | |
33 <option value="median">Median</option> | |
34 <option value="mean">Mean</option> | |
35 </param> | |
36 | |
37 | |
38 <param name="gene_threshold" type="integer" label="Gene Threshold" help="Minimum number of mutations per gene to compute the FM bias" optional="true" value="2"/> | |
39 <param name="pathway_threshold" type="integer" label="Pathway Threshold" help="Minimum number of mutations per pathway to compute the FM bias" optional="true" value="10" /> | |
40 <param name="slices" type="text" label="Slices" help="Slices to process separated by commas(slices=SIFT,PPH2,MA)" optional="true" value="SIFT,PPH2,MA"/> | |
41 <conditional name="mappingpathcondition"> | |
42 <param name="hasmapfile" type="select" label="Have a mapping gene file"> | |
43 <option value="no">No</option> | |
44 <option value="yes">Yes</option> | |
45 </param> | |
46 <when value="yes"> | |
47 <param name="mapping_path" type="data" format="tabular" label=" File with mappings between genes and pathways to be analysed"/> | |
48 </when> | |
49 </conditional> | |
50 </inputs> | |
51 <outputs> | |
52 | |
53 <data format="tabular" name="output1"/> | |
54 <data format="tabular" name="output2" > | |
55 <filter>mappingpathcondition["hasmapfile"]=="yes"</filter> | |
56 </data> | |
57 </outputs> | |
58 <help> | |
59 **What it does** | |
60 Oncodrive-fm is an approach to uncover driver genes or gene modules. | |
61 It computes a metric of functional impact using three well-known methods (SIFT, PolyPhen2 and MutationAssessor) | |
62 and assesses how the functional impact of variants found in a gene across several tumor samples deviates from | |
63 a null distribution. It is thus based on the assumption that any bias towards the accumulation of variants | |
64 with high functional impact is an indication of positive selection and can thus be used to detect candidate | |
65 driver genes or gene modules. | |
66 | |
67 **Citation** | |
68 If you use this Galaxy tool in work leading to a scientific publication please cite: | |
69 | |
70 Gonzalez-Perez A and Lopez-Bigas N. 2012. Functional impact bias reveals cancer drivers. Nucleic Acids Res., 10.1093/nar/gks743. | |
71 | |
72 </tool> | |
73 |