|
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>
|
|
6
|
5 <requirement type="package" version="7.19.3.1">pycurl</requirement>
|
|
7
|
6 <requirement type="package" version="4.1.0">beautifulsoup4</requirement>
|
|
3
|
7 <requirement type="python-module">requests</requirement>
|
|
6
|
8 <requirement type="python-package">pycurl</requirement>
|
|
7
|
9 <requirement type="python-package">bs4</requirement>
|
|
3
|
10 </requirements>
|
|
|
11 <command interpreter="python">
|
|
|
12 condel_web.py --input $input --output $output
|
|
|
13 </command>
|
|
|
14 <inputs>
|
|
|
15 <param name="input" format="text" type="data" label="Input Variants" />
|
|
|
16 </inputs>
|
|
|
17 <outputs>
|
|
|
18 <data name="output" format="tabular"/>
|
|
|
19 </outputs>
|
|
|
20 <tests>
|
|
|
21 <test>
|
|
6
|
22 <param name="input" value="condel_input.tsv"/>
|
|
4
|
23 <output name="output" file="condel_output.csv"/>
|
|
3
|
24 </test>
|
|
|
25 </tests>
|
|
|
26 <help>
|
|
|
27 **What it does**
|
|
|
28
|
|
|
29 This script calls condel web api at http://bg.upf.edu/condel/
|
|
|
30
|
|
|
31 Condel stands for CONsensus DELeteriousness score of non-synonymous single nucleotide variants (SNVs).
|
|
|
32 The idea behind it is to integrate the output of computational tools aimed at assessing the impact of non synonymous SNVs on protein function.
|
|
|
33 To do this, it computes a weighted average of the scores (WAS) of these tools : SIFT, Polyphen2, MAPP, LogR Pfam E-value
|
|
|
34 (implemented ad hoc following the instructions at Clifford RJ, Edmonson MN, Nguyen C, and Buetow KH (2004)
|
|
|
35 Large-scale analysis of non-synonymous coding region single nucleotide polymorphisms. Bioinformatics 20, 1006-1014) and MutationAssessor
|
|
|
36
|
|
|
37 **How does it work**
|
|
|
38
|
|
|
39 The scores of different methods are weighted using the complementary cumulative distributions produced by the five methods on a
|
|
|
40 dataset of approximately 20000 missense SNPs, both deleterious and neutral. The probability that a predicted deleterious mutation is not a
|
|
|
41 false positive of the method and the probability that a predicted neutral mutation is not a false negative are employed as weights.
|
|
|
42
|
|
6
|
43 **Input**
|
|
|
44
|
|
|
45 There are two main formats allowed:
|
|
|
46
|
|
|
47
|
|
|
48 SNVs may be submitted for analysis both in chromosome and protein coordinates.
|
|
|
49
|
|
|
50
|
|
|
51 The chromosome coordinates (hg19) input must follow this format:
|
|
|
52
|
|
|
53
|
|
|
54 [CHROMOSOME] [START] [END] [MUTANT_NUCLEOTIDE]
|
|
|
55
|
|
|
56
|
|
|
57
|
|
|
58 The END column is the same as the START for SNVs.
|
|
|
59 Those four columns must be separated by tabs. Also a fifth column can optionally be added with the Variant name
|
|
|
60
|
|
|
61
|
|
|
62 Ex:
|
|
|
63
|
|
|
64 9 32473058 32473058 A
|
|
|
65
|
|
|
66 7 43918688 43918688 C
|
|
|
67
|
|
|
68 Additionally, the input could be composed by two columns the strand of the SNV and an identifier:
|
|
|
69
|
|
|
70 [PROTEIN_ID][variant]
|
|
|
71
|
|
|
72 Also tab separated. Currently only Uniprot, RefSeq_Peptide and Ensembl identifiers are recognized by the webserver.
|
|
|
73
|
|
|
74 The variant column must contain the following information (in this order ): change_position, reference_aminoacid and changed_aminoacid
|
|
|
75
|
|
|
76 Ex:
|
|
|
77
|
|
|
78 EGFR_HUMAN R521K
|
|
|
79
|
|
|
80 EGFR_HUMAN R98Q
|
|
|
81
|
|
|
82 .. class:: warningmark
|
|
|
83
|
|
|
84 Note
|
|
|
85
|
|
|
86 Please, note that the Variant Effect Predictor assumes that the allele submitted is coded in the forward strand.
|
|
|
87
|
|
|
88 If you are assessing the effect of variants coded in the reverse strand, please introduce the complementary nucleotide instead.
|
|
|
89
|
|
3
|
90 **Citation**
|
|
|
91
|
|
|
92
|
|
|
93 If you use this tool please cite:
|
|
|
94
|
|
|
95
|
|
|
96 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
|
|
|
97
|
|
|
98
|
|
|
99 </help>
|
|
|
100 </tool>
|
|
|
101
|