annotate interproscan.xml @ 0:341830c8cd37

initial commit
author bjoern-gruening
date Tue, 24 Jan 2012 07:35:10 -0500
parents
children 94745fda6aff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
1 <tool id="interproscan" name="Interproscan functional predictions of ORFs" version="1.1">
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
2 <description>Interproscan functional predictions of ORFs</description>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
3 <command>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
4 ## The command is a Cheetah template which allows some Python based syntax.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
5 ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
6
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
7 ## create temp directory
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
8 #import tempfile, os
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
9 #set $tfile = tempfile.mkstemp()[1]
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
10
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
11 sed 's/ /_/g' $input > $tfile;
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
12
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
13 ## Hack, because interproscan does not seem to produce gff output even if it is configured
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
14 #if str($oformat)=="gff":
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
15 #set $tfile2 = tempfile.mkstemp()[1]
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
16 iprscan -cli -nocrc -i $tfile -o $tfile2 -goterms -seqtype p -altjobs -format raw -appl $appl > /dev/null 2> /dev/null;
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
17 converter.pl -format gff3 -input $tfile2 -output $output
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
18 rm $tfile2
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
19 #else
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
20 iprscan -cli -nocrc -i $tfile -o $output -goterms -seqtype p -altjobs -format $oformat -appl $appl > /dev/null 2> /dev/null;
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
21 #end if
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
22
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
23 rm $tfile;
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
24
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
25 </command>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
26 <inputs>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
27 <param name="input" type="data" format="fasta" label="Protein Fasta File"/>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
28
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
29 <param name="appl" type="select" format="text" help="Select your programm.">
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
30 <label>Applications to run ...</label>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
31 <option value="blastprodom+coils+gene3d+hamap+hmmpanther+hmmpir+hmmpfam+hmmsmart+hmmtigr+fprintscan+patternscan+profilescan+superfamily+seg+signalp+tmhmm" selected="true">all</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
32 <option value="seg">seg</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
33 <option value="signalp">signalp</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
34 <option value="tmhmm">tmhmm</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
35 <option value="fprintscan">fprintscan</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
36 <option value="patternscan">patternscan</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
37 <option value="profilescan">profilescan</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
38 <option value="superfamily">superfamily</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
39 <option value="hmmpir">hmmpir</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
40 <option value="hmmpfam">hmmpfam</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
41 <option value="hmmsmart">hmmsmart</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
42 <option value="hmmtigr">hmmtigr</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
43 <option value="hmmpanther">hmmpanther</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
44 <option value="hamap">hamap</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
45 <option value="gene3d">gene3d</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
46 <option value="coils">coils</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
47 <option value="blastprodom">blastprodom</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
48 </param>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
49
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
50 <param name="oformat" type="select" label="Output format" help="Please select a output format.">
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
51 <option value="gff" selected="true">gff</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
52 <option value="raw">raw</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
53 <option value="txt">txt</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
54 <option value="html">html</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
55 <option value="xml">xml</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
56 <option value="ebixml">EBI header on top of xml</option>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
57 </param>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
58
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
59 </inputs>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
60 <outputs>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
61
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
62 <data format="txt" name="output" label="Interproscan calculation on ${on_string}">
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
63 <change_format>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
64 <when input="oformat" value="html" format="html"/>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
65 <when input="oformat" value="xml" format="xml"/>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
66 <when input="oformat" value="ebixml" format="xml"/>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
67 <when input="oformat" value="gff" format="gff"/>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
68 </change_format>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
69 </data>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
70
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
71 </outputs>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
72 <requirements>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
73 </requirements>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
74 <help>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
75
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
76 **What it does**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
77
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
78
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
79 Interproscan is a batch tool to query the Interpro database. It provides annotations based on multiple searches of profile and other functional databases.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
80 These include SCOP, CATH, PFAM and SUPERFAMILY.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
81
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
82 **Input**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
83 A FASTA file containing ORF predictions is required. This file must NOT contain any spaces in the FASTA headers - any spaces will be convereted to underscores (_) by this tool before submission to Interproscan.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
84
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
85 **Output**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
86
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
87 Example for the raw format.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
88 This is a basic tab delimited format useful for uploading the data into a relational database or concatenation of different runs.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
89 is all on one line.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
90
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
91 ====== ================================================================ ======================================================================
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
92 column example description
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
93 ====== ================================================================ ======================================================================
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
94 c1 NF00181542 the id of the input sequence.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
95 c2 27A9BBAC0587AB84 the crc64 (checksum) of the protein sequence (supposed to be unique).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
96 c3 272 the length of the sequence (in AA).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
97 c4 HMMPIR the anaysis method launched.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
98 c5 PIRSF001424 the database members entry for this match.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
99 c6 Prephenate dehydratase the database member description for the entry.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
100 c7 1 the start of the domain match.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
101 c8 270 the end of the domain match.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
102 c9 6.5e-141 the evalue of the match (reported by member database method).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
103 c10 T the status of the match (T: true, ?: unknown).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
104 c11 06-Aug-2005 the date of the run.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
105 c12 IPR008237 the corresponding InterPro entry (if iprlookup requested by the user).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
106 c13 Prephenate dehydratase with ACT region the description of the InterPro entry.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
107 c14 Molecular Function:prephenate dehydratase activity (GO:0004664) the GO (gene ontology) description for the InterPro entry.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
108 ====== ================================================================ ======================================================================
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
109
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
110
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
111 **Database updates**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
112
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
113 Typically these take place 2-3 times a year.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
114
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
115
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
116 **Tools**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
117
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
118 PROSITE patterns
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
119
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
120 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
121
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
122 Some biologically significant amino acid patterns can be summarised in
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
123 the form of regular expressions.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
124 ScanRegExp (by Wolfgang.Fleischmann@ebi.ac.uk),
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
125
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
126 PROSITE profiles
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
127
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
128 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
129
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
130 There are a number of protein families as well as functional or
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
131 structural domains that cannot be detected using patterns due to their extreme
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
132 sequence divergence, so the use of techniques based on weight matrices
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
133 (also known as profiles) allows the detection of such proteins or domains.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
134 A profile is a table of position-specific amino acid weights and gap costs.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
135 The profile structure used in PROSITE is similar to but slightly more general
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
136 (Bucher P. et al., 1996 [7]) than the one introduced by M. Gribskov and
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
137 co-workers.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
138 pfscan from the Pftools package (by Philipp.Bucher@isrec.unil.ch).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
139
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
140 PRINTS
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
141
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
142 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
143
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
144 The PRINTS database houses a collection of protein family fingerprints.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
145 These are groups of motifs that together are diagnostically more
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
146 powerful than single motifs by making use of the biological context inherent in a
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
147 multiple-motif method. The fingerprinting method arose from the need for
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
148 a reliable technique for detecting members of large, highly divergent
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
149 protein super-families.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
150 FingerPRINTScan (Scordis P. et al., 1999 [8]).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
151
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
152 PFAM
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
153
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
154 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
155
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
156 Pfam is a database of protein domain families. Pfam contains curated
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
157 multiple sequence alignments for each family and corresponding hidden
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
158 Markov models (HMMs) (Eddy S.R., 1998 [9]).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
159 Profile hidden Markov models are statistical models of the primary
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
160 structure consensus of a sequence family. The construction and use
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
161 of Pfam is tightly tied to the HMMER software package.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
162 hmmpfam from the HMMER2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
163 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
164
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
165 PRODOM
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
166
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
167 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
168
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
169
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
170 ProDom is a database of protein domain families obtained by automated
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
171 analysis of the SWISS-PROT and TrEMBL protein sequences. It is useful
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
172 for analysing the domain arrangements of complex protein families and the
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
173 homology relationships in modular proteins. ProDom families are built by
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
174 an automated process based on a recursive use of PSI-BLAST homology
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
175 searches.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
176 ProDomBlast3i.pl (by Emmanuel Courcelle emmanuel.courcelle@toulouse.inra.fr
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
177 and Yoann Beausse beausse@toulouse.inra.fr)
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
178 a wrapper on top of the Blast package (Altschul S.F. et al., 1997 [10]).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
179
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
180
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
181 SMART
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
182
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
183 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
184
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
185 SMART (a Simple Modular Architecture Research Tool) allows the
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
186 identification and annotation of genetically mobile domains and the
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
187 analysis of domain architectures. These domains are extensively
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
188 annotated with respect to phyletic distributions, functional class, tertiary
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
189 structures and functionally important residues. SMART alignments are
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
190 optimised manually and following construction of corresponding hidden Markov models (HMMs).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
191 hmmpfam from the HMMER2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
192 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
193
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
194
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
195 TIGRFAMs
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
196
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
197 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
198
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
199 TIGRFAMs are a collection of protein families featuring curated multiple
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
200 sequence alignments, Hidden Markov Models (HMMs) and associated
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
201 information designed to support the automated functional identification
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
202 of proteins by sequence homology. Classification by equivalog family
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
203 (see below), where achievable, complements classification by orthologs,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
204 superfamily, domain or motif. It provides the information best suited
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
205 for automatic assignment of specific functions to proteins from large
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
206 scale genome sequencing projects.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
207 hmmpfam from the HMMER2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
208 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
209
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
210 PIR SuperFamily
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
211
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
212 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
213
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
214 PIR SuperFamily (PIRSF) is a classification system based on evolutionary
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
215 relationship of whole proteins.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
216 hmmpfam from the HMMER2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
217 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
218
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
219 SUPERFAMILY
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
220
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
221 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
222
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
223 SUPERFAMILY is a library of profile hidden Markov models that represent
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
224 all proteins of known structure, based on SCOP.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
225 hmmpfam/hmmsearch from the HMMER2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
226 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
227 Optionally, predictions for coiled-coil, signal peptide cleavage sites
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
228 (SignalP v3) and TM helices (TMHMM v2) are supported (See the FAQs file
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
229 for details).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
230
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
231
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
232 GENE3D
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
233
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
234 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
235
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
236 Gene3D is supplementary to the CATH database. This protein sequence database
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
237 contains proteins from complete genomes which have been clustered into protein
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
238 families and annotated with CATH domains, Pfam domains and functional
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
239 information from KEGG, GO, COG, Affymetrix and STRINGS.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
240 hmmpfam from the HMM2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
241 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
242
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
243
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
244 PANTHER
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
245
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
246 ::
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
247
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
248 The PANTHER (Protein ANalysis THrough Evolutionary Relationships)
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
249 Classification System was designed to classify proteins (and their genes)
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
250 in order to facilitate high-throughput analysis.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
251 hmmsearch from the HMM2.3.2 package (by Sean Eddy,
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
252 eddy@genetics.wustl.edu, http://hmmer.wustl.edu).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
253 and blastall from the Blast package (Altschul S.F. et al., 1997 [10]).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
254
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
255
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
256
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
257 **References**
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
258
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
259 Quevillon E., Silventoinen V., Pillai S., Harte N., Mulder N., Apweiler R., Lopez R.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
260 InterProScan: protein domains identifier (2005).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
261 Nucleic Acids Res. 33 (Web Server issue) :W116-W120
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
262
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
263 Hunter S, Apweiler R, Attwood TK, Bairoch A, Bateman A, Binns D, Bork P, Das U, Daugherty L, Duquenne L, Finn RD, Gough J, Haft D, Hulo N, Kahn D, Kelly E, Laugraud A, Letunic I, Lonsdale D, Lopez R, Madera M, Maslen J, McAnulla C, McDowall J, Mistry J, Mitchell A, Mulder N, Natale D, Orengo C, Quinn AF, Selengut JD, Sigrist CJ, Thimma M, Thomas PD, Valentin F, Wilson D, Wu CH, Yeats C.
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
264 InterPro: the integrative protein signature database (2009).
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
265 Nucleic Acids Res. 37 (Database Issue) :D224-228
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
266
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
267 Galaxy Wrapper Author:
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
268
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
269 * Bjoern Gruening, Pharmaceutical Bioinformatics, University of Freiburg
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
270 * Konrad Paszkiewicz, Exeter Sequencing Service, University of Exeter
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
271
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
272
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
273
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
274 </help>
341830c8cd37 initial commit
bjoern-gruening
parents:
diff changeset
275 </tool>