|
3
|
1 <tool id="condel_web" name="condel">
|
|
|
2 <description>Condel web service</description>
|
|
|
3 <requirements>
|
|
|
4 <requirement type="package" version="2.2.1">requests</requirement>
|
|
|
5 <requirement type="python-module">requests</requirement>
|
|
|
6 </requirements>
|
|
|
7 <command interpreter="python">
|
|
|
8 condel_web.py --input $input --output $output
|
|
|
9 </command>
|
|
|
10 <inputs>
|
|
|
11 <param name="input" format="text" type="data" label="Input Variants" />
|
|
|
12 </inputs>
|
|
|
13 <outputs>
|
|
|
14 <data name="output" format="tabular"/>
|
|
|
15 </outputs>
|
|
|
16 <tests>
|
|
|
17 <test>
|
|
|
18 <param name="input" value="condel_input.txt"/>
|
|
|
19 <output name="output" file="condel_output.txt"/>
|
|
|
20 </test>
|
|
|
21 </tests>
|
|
|
22 <help>
|
|
|
23 **What it does**
|
|
|
24
|
|
|
25 This script calls condel web api at http://bg.upf.edu/condel/
|
|
|
26
|
|
|
27 Condel stands for CONsensus DELeteriousness score of non-synonymous single nucleotide variants (SNVs).
|
|
|
28 The idea behind it is to integrate the output of computational tools aimed at assessing the impact of non synonymous SNVs on protein function.
|
|
|
29 To do this, it computes a weighted average of the scores (WAS) of these tools : SIFT, Polyphen2, MAPP, LogR Pfam E-value
|
|
|
30 (implemented ad hoc following the instructions at Clifford RJ, Edmonson MN, Nguyen C, and Buetow KH (2004)
|
|
|
31 Large-scale analysis of non-synonymous coding region single nucleotide polymorphisms. Bioinformatics 20, 1006-1014) and MutationAssessor
|
|
|
32
|
|
|
33 **How does it work**
|
|
|
34
|
|
|
35 The scores of different methods are weighted using the complementary cumulative distributions produced by the five methods on a
|
|
|
36 dataset of approximately 20000 missense SNPs, both deleterious and neutral. The probability that a predicted deleterious mutation is not a
|
|
|
37 false positive of the method and the probability that a predicted neutral mutation is not a false negative are employed as weights.
|
|
|
38
|
|
|
39 **Citation**
|
|
|
40
|
|
|
41
|
|
|
42 If you use this tool please cite:
|
|
|
43
|
|
|
44
|
|
|
45 Improving the Assessment of the Outcome of Nonsynonymous SNVs with a Consensus Deleteriousness Score, Condel (2011) Abel González-Pérez and Nuria López-Bigas, American Journal of Human Genetics 10.1016/j.ajhg.2011.03.004
|
|
|
46
|
|
|
47
|
|
|
48 </help>
|
|
|
49 </tool>
|
|
|
50
|