annotate fathmm/fathmm.xml @ 0:fd66648ce5f9 draft default tip

Uploaded
author saket-choudhary
date Tue, 07 Oct 2014 19:25:07 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
1 <tool id="fathmm_web" name="FATHMM">
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
2 <description>fathmm web service</description>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
3 <requirements>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
4 <requirement type="package" version="2.2.1">requests</requirement>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
5 <requirement type="python-module">requests</requirement>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
6 </requirements>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
7 <command interpreter="python">fathmm.py --input $input --output $output --threshold $threshold
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
8 </command>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
9 <inputs>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
10 <param name="input" format="txt" type="data" label="Input variants" />
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
11 <param name="threshold" type="float" label="Threshold cutoff" value="-0.75" help="Predictions with scores less than this indicate that the mutation is potentially associated with cancer" />
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
12 </inputs>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
13 <outputs>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
14 <data name="output" format="tabular"/>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
15 </outputs>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
16 <tests>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
17 <test>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
18 <param name="input" value="fathmm_input.txt"/>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
19 <param name="threshold" value="-0.75" />
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
20 <output name="output" file="fathmm_output.tab" lines_diff="2"/>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
21 </test>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
22 </tests>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
23 <help>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
24
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
25
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
26 **What it does**
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
27
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
28
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
29 This script calls FATHMM(http://supfam3.cs.bris.ac.uk/FATHMM/about.html) Web API to fetch
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
30 predict functional impact of mutations.
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
31
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
32 Input is a plain text file:
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
33
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
34 1. &lt;protein&gt; &lt;substitution&gt;
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
35
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
36 2. dbSNP rs identifiers
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
37
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
38
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
39 Where &lt;protein&gt; is the protein identifier and
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
40 &lt;substitution&gt; is the amino acid substitution in the conventional one letter format.
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
41 Multiple substitutions can be entered on a single line and should be separated by a comma.
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
42 SwissProt/TrEMBL, RefSeq and Ensembl protein identifiers are accepted:
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
43
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
44 P43026 L441P
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
45 ENSP00000325527 N548I,E1073K,C2307S
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
46
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
47
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
48
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
49 **Citations**
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
50
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
51 If you use this tool in Galaxy, please cite :
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
52
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
53 Shihab HA, Gough J, Cooper DN, Stenson PD, Barker GLA, Edwards KJ, Day INM, Gaunt, TR. (2013).
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
54 Predicting the Functional, Molecular and PhenotypicConsequences of Amino Acid Substitutions using
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
55 Hidden Markov Models. Hum. Mutat., 34:57-65
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
56
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
57 Shihab HA, Gough J, Cooper DN, Day INM, Gaunt, TR. (2013). Predicting the Functional Consequences
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
58 of Cancer-Associated Amino Acid Substitutions. Bioinformatics 29:1504-1510.
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
59
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
60 Shihab HA, Gough J, Mort M, Cooper DN, Day INM, Gaunt, TR. (2014).
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
61 Ranking Non-Synonymous Single Nucleotide Polymorphisms based on Disease Concepts. In Press
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
62
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
63 </help>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
64 </tool>
fd66648ce5f9 Uploaded
saket-choudhary
parents:
diff changeset
65