| 3 | 1 ================================================== | 
|  | 2 Galaxy wrapper for InterProScan 4 prediction tools | 
|  | 3 ================================================== | 
|  | 4 | 
|  | 5 **Note**: | 
|  | 6 | 
|  | 7 This wrapper is for InterProScan 4.x if you want to use InterProScan 5 please have a look at: | 
|  | 8 http://toolshed.g2.bx.psu.edu/view/bgruening/interproscan5 | 
|  | 9 | 
|  | 10 ----- | 
| 0 | 11 | 
|  | 12 InterProScan is a tool that combines different protein signature recognition methods native to the InterPro | 
|  | 13 member databases into one resource with look up of corresponding InterPro and GO annotation. | 
|  | 14 | 
| 3 | 15 This wrapper is copyright 2012-2013 by: | 
|  | 16  *  Bjoern Gruening, Pharmaceutical Bioinformatics, University of Freiburg | 
|  | 17  *  Konrad Paszkiewicz, Exeter Sequencing Service, University of Exeter | 
| 0 | 18 | 
|  | 19 | 
| 3 | 20 This prepository contains wrapper for the InterProScan_ command line tool. | 
|  | 21 | 
|  | 22 .. _InterProScan: http://www.ebi.ac.uk/interpro/ | 
| 0 | 23 | 
|  | 24 | 
|  | 25 Zdobnov E.M. and Apweiler R. "InterProScan - an integration platform for the signature-recognition methods in InterPro" Bioinformatics, 2001, 17(9): p. 847-8. | 
|  | 26 | 
|  | 27 | 
|  | 28 ============ | 
|  | 29 Installation | 
|  | 30 ============ | 
|  | 31 | 
|  | 32 Please download install InterProScan according to: | 
|  | 33 | 
|  | 34 ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/Installing_InterProScan.txt | 
|  | 35 | 
|  | 36 Please see also: | 
|  | 37 ftp://ftp.ebi.ac.uk/pub/software/unix/iprscan/index.html | 
|  | 38 | 
| 3 | 39 And rebuild the indizes if necessary | 
|  | 40 | 
|  | 41 .. code:: | 
| 0 | 42 | 
| 3 | 43 	index_data.pl -f interpro.xml -inx -v -bin -bforce | 
|  | 44 	index_data.pl -f match_complete.xml -inx -v -bin -bforce | 
|  | 45 	index_data.pl -f Pfam-A.seed -inx -v -bin -bforce | 
|  | 46 	index_data.pl -f Pfam-C -inx -v -bin -bforce | 
|  | 47 	index_data.pl -f prints.pval -inx -v -bin -bforce | 
|  | 48 	index_data.pl -f sf.seq -inx -v -bin -bforce | 
|  | 49 	index_data.pl -f sf_hmm -inx -v -bin -bforce | 
|  | 50 	index_data.pl -f smart.HMMs -inx -v -bin -bforce | 
|  | 51 	index_data.pl -f superfamily.hmm -inx -v -bin -bforce | 
|  | 52 	index_data.pl -f TIGRFAMs_HMM.LIB -inx -v -bin -bforce | 
| 0 | 53 | 
|  | 54 | 
| 3 | 55 Add the tool definition to your tool_conf.xml file under Galaxy root: | 
|  | 56 .. code:: | 
|  | 57 | 
| 0 | 58 	<tool file="iprscan/interproscan.xml" /> | 
|  | 59 | 
|  | 60 ============= | 
|  | 61 Input formats | 
|  | 62 ============= | 
|  | 63 | 
|  | 64 The standard interproscan input is either genomic or protein sequences. In the case of genomic sequences Interproscan will run an ORF | 
|  | 65 prediction tool. However this tends to lose the ORF information (e.g. start/end co-ordinates) from the header. As such the requirement here is to input ORF | 
|  | 66 sequences (e.g. from EMBOSS getorf) and to then replace any spaces in the FASTA header with underscores. This workaround generally preserves the relevant | 
|  | 67 positional information. | 
|  | 68 | 
|  | 69 | 
|  | 70 ======= | 
|  | 71 History | 
|  | 72 ======= | 
|  | 73 | 
|  | 74 interproscan: | 
| 3 | 75 | 
|  | 76  - v1.1: Initial public release | 
|  | 77  - v1.2: Merge with Konrad Paszkiewicz repository | 
| 0 | 78 | 
|  | 79 | 
| 3 | 80 ============= | 
|  | 81 Licence (MIT) | 
|  | 82 ============= | 
|  | 83 | 
|  | 84 Permission is hereby granted, free of charge, to any person obtaining a copy | 
|  | 85 of this software and associated documentation files (the "Software"), to deal | 
|  | 86 in the Software without restriction, including without limitation the rights | 
|  | 87 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
|  | 88 copies of the Software, and to permit persons to whom the Software is | 
|  | 89 furnished to do so, subject to the following conditions: | 
| 0 | 90 | 
| 3 | 91 The above copyright notice and this permission notice shall be included in | 
|  | 92 all copies or substantial portions of the Software. | 
| 0 | 93 | 
| 3 | 94 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
|  | 95 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
|  | 96 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | 
|  | 97 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
|  | 98 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
|  | 99 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
|  | 100 THE SOFTWARE. | 
| 0 | 101 |