Re: [Jmol-users] "Unrecognized file format for file ..."

2016-03-06 Thread T. Ashok Kumar
*../* or *../../* according to the directory path. 5. If step 4 fails, try to include* full path* of the file (or) URL. 6. If above all step fails, simply *view the raw file* in the browser using the URL to confirm the file access. -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam

Re: [Jmol-users] "Unrecognized file format for file ..."

2016-03-05 Thread T. Ashok Kumar
> Jmol-users mailing list > Jmol-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/jmol-users > > -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumarac

Re: [Jmol-users] How to decide JSmol function execution time automatically?

2016-01-27 Thread T. Ashok Kumar
t; ___ > Jmol-users mailing list > Jmol-users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/jmol-users > -- T. Ashok Kumar Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil

[Jmol-users] How to decide JSmol function execution time automatically?

2016-01-27 Thread T. Ashok Kumar
""); var result = Jmol.evaluateVar(jmolApplet0, query); if (result > 0) { document.getElementById('Output').innerHTML = "Both SMILES are same.<br/>Score: " + result; } else { document.getElementById('Output').innerHTML = "Both SMILES are differe

Re: [Jmol-users] Is it possible to combine Jmol script and PDB file into a single file?

2016-01-22 Thread T. Ashok Kumar
Hi Angel Herráez, Thank you... Got the solution. data "*model* docking" : : : : end "model docking"; show data; But, it seems the word "model " is compulsory. -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science K

[Jmol-users] Is it possible to combine Jmol script and PDB file into a single file?

2016-01-22 Thread T. Ashok Kumar
Is it possible to combine Jmol script and PDB file into a single file and load it into JSmol? -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil, Thuckalay - 629 180 Kanyakumari District, INDIA Mobile:- 00 91 9655307178 *E-Mail

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-12 Thread T. Ashok Kumar
I am developing an online molecular modeling and drug design web server, which will publicly available after completion of design. I use JSmol for molecular visualization, ligand interaction, and some other computation part. I am not much familiar with most of the .jar files in the Jmol. If you sug

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
Dear Otis, Thank you for your support... My next goal is to compare the query SMILES string with the canonical SMILES strings present in the MySQL database using Ajax. Thank you Jmol group members. -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
NC(=O)C3=N2)CC(C(C(CO)O)O)O', 'N(C(NC1=O)=O)=C(C1=NC2C=C3C)N(C=2C=C3C)C[C@H]([C@@H](O)[C@H](CO)O)O'); } Now it works fine. -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil, Thuckalay - 629 180 Kanyakumari District, INDIA

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
e(jmolApplet0, query); } function Match() { document.getElementById('Output').innerHTML = CompSmi(); } Output: 47 I thank all Jmol group members for your kind support -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil, Thuc

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
in JSmol. The link for trial webpage is .. http://www.biogem.org/uploads/Jmol_SMILES.html.txt -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil, Thuckalay - 629 180 Kanyakumari District, INDIA Mobile:- 00 91 9655307178 *E-Mail

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
/uploads/JSmol_Console.png I am confused whether using *Jmol.evaluateVar() *function is only choice (or) the declaration is wrong. -- *T. Ashok Kumar* Head, Department of Bioinformatics Noorul Islam College of Arts and Science Kumaracoil, Thuckalay - 629 180 Kanyakumari District, INDIA Mobile

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-11 Thread T. Ashok Kumar
key, ans) { key = key.replace(/\\/g, ''); ans = ans.replace(/\\/g, ''); return Jmol.evaluateVar(jmolApplet0, "'" + key + "'.find('SMILES','" + ans + "') > 0"); } compSmiles('CC1=CC2=C(C

Re: [Jmol-users] How to run JSmol SMILES matching script in a webpage?

2016-01-10 Thread T. Ashok Kumar
#x27;console'); }) *Script:* smiles1 = "C(=C(C(=N1)C)O)(C(=C1)CO)CO"; smiles2 = "CC1=NC=C(C(=C1O)CO)CO"; result = smiles2.find("SMILES", smiles1); if(result > 0) { print "Both SMILES are same.\nScore:" + result; } else { print "Both SMIL

[Jmol-users] How to JSmol SMILES matching script in a webpage?

2016-01-09 Thread T. Ashok Kumar
Dear Bob, How to run JSmol SMILES matching script in a webpage, like a javascript? For example, document.write("O[C@](F)(Cl)I".find("smiles","O[C@](F)(Cl)I")); (OR) var x = "O[C@](F)(Cl)I".find("smiles","O[C@](F)(Cl)I"); d