![]()
| CRNPREDThe Japanese version help is here. Contents
URLWhat is CRNPRED?CRNPRED is a web-based service that predicts one-dimensional (1D) protein structures including secondary structures, contact numbers, and residue-wise contact orders from amino acid sequence. Prediction results are returned by email. How to use CRNPRED serverYou paste a FASTA-formatted amino acid sequence, select one of the three available predictors, and supply your email address. Then click the submit button. After a while, the result will be sent back to you. Currently, three prediction methods are available:
It should be noted, however, that the most time-consuming part of the prediction is the generation of PSSM by PSI-BLAST. Depending on the size of your protein sequence, the CPU-time for the whole prediction process may not vary so much depending on the predictors. "How should I interpret the results?"After you have submitted a protein sequence to the CRNPRED server, you will get a result something like the following: References: 0. CRNPRED prediction server: http://www.pdbj.org/crnpred/ 1. ...... ;;BEGIN jobid: F2.1259394568.774714 # Input sequence >1GOFA:GALACTOSE OXIDASE ASAPIGSAISRNNWAVTCDSAQSGNECNKAIDGNKDTFWHTFYGANGDPKPPHTYTIDMK TTQNVNGLSMLPRQDGNQNGWIGRHEVYLSSDGTNWGSPVASGSWFADSTTKYSNFETRP ..... # prediction by CRN2000 # * * * * * * AA: ASAPIGSAISRNNWAVTCDSAQSGNECNKAIDGNKDTFWHTFYGANGDPKPPHTYTIDMK SS: CCCCCCCCCCCCCEEEEECCCCCCCCCCEEECCCCCCCECCCCCCCCCCCCCEEEEEECC CN: BBBBBBBBEBBBBEEEEEEEBEBBBEEEEEEEEEEEEEEEEBEBBBBBBEEEEEEEEEEE # * * * * * * AA: TTQNVNGLSMLPRQDGNQNGWIGRHEVYLSSDGTNWGSPVASGSWFADSTTKYSNFETRP SS: CCEEEEEEEEECCCCCCCCCCCEEEEEEECCCCCCCCEEEECCCCCCCCCCEEEEECCCC CN: BEEEEEEEEEEEEEEBBBBEEEEEEEEEEEEEBBEEEEEEEEEEEBBBBBEEEEEEEEEE ...... // ># AA : SS P_H P_E P_C : CN : RWCO 1 A : C 5 6 89 : B 13 : 2402 2 S : C 6 7 87 : B 10 : 2287 3 A : C 7 8 85 : B 12 : 2757 4 P : C 7 8 85 : B 17 : 3635 5 I : C 7 7 86 : B 16 : 3643 6 G : C 7 7 86 : B 16 : 3868 7 S : C 7 7 86 : B 16 : 3692 8 A : C 7 8 85 : B 22 : 4265 9 I : C 7 9 84 : E 33 : 5742 10 S : C 7 8 85 : B 20 : 3646 11 R : C 6 7 87 : B 21 : 3978 12 N : C 6 7 86 : B 16 : 3615 13 N : C 9 20 71 : B 20 : 3969 14 W : E 10 63 27 : E 38 : 5945 15 A : E 6 87 7 : E 32 : 4798 16 V : E 5 91 4 : E 47 : 6656 where
"I don't receive any email from CRNPRED!"One possible reason is that the email returned by CRNPRED has been classified as a SPAM. Please check your SPAM email folder and teach your email client program that CRNPRED emails are not SPAMs. Otherwise, our server may be overcrowded with many requests. Please wait for some time. If you have any doubt that CRNPRED failed for some reason, please contact us from the query form at this site. Please include the word "CRNPRED" in the subject field. How CRNPRED predicts 1D structures?CRNPRED uses a position-specific scoring matrix (PSSM) generated by PSI-BLAST as its input, and based on the PSSM, a machine-learning method called Critical Random Network (CRN) is applied. CRN can extract some hidden patterns in the PSSM. The patterns are expressed as a set of high-dimensional state vectors which are used as input variables for a simple linear regression to produce predicted secondary structures, contact numbers and residue-wise contact orders. More concretely, the following procedure is applied:
Except for the linear predictor, CRNPRED combines predictions from 20 independent predictors which were trained differently. This ensemble prediction significantly increases the accuracy. How accurate is CRNPRED?According to benchmark (Ref. 1 and 2, below), the average accuracies are the following: CRN5000 (from Ref. 1)
Linear (from Ref. 2)
Locally installing CRNPREDYou may download the source code of CRNPRED from You will also need to install BLAST and set up an appropriate sequence database thereof. See the instructions in the above web site. ReferencesThe following articles are all open-access (i.e., freely downloadable).
REST interface to CRNPREDYou can call the CRNPRED web service from your program. CGI parameters
Submitting a queryYou should use the HTTP POST method. Using the curl program, a query may be submitted like: curl -F "fasta=@hoge.seq" -F "method=lin" "http://www.pdbj.org/crnpred/" > myquery.xml where the sequence is saved in the file hoge.seq. Then, an xml (xhtml 1.1) page is saved in the file named myquery.xml which contains the job ID of your query. The job ID is in the h2 tag with class attribute value of jobid. That is, something like <h2 class="jobid">DC.1244676954.282566</h2> where DC.1244676954.282566 is the job ID. If you are writing a program that calls the CRNPRED REST service, you should be able to write something equivalent to the above example which uses curl. Retrieving the resultYou can retrieve the result of your query by specifying the jobid parameter. Again, using the curl program, curl "http://www.pdbj.org/crnpred/?jobid=DC.1244676954.282566" > result.txt If the job has been completed, the prediction result is saved in the file named result.txt. The result is a plain text. ;;BEGIN (your result here) ;;END If the job has not yet finished, the result will be "In progress." Then, you should try again after some time. If the job ID doesn't exist, "Not found." is returned. |