User 8688ffe688
23-05-2007 17:56:24
Anybody know how to get single pka value throw JChem cartridge jc_evaluate call?
User 8688ffe688
23-05-2007 17:56:24
ChemAxon e08c317633
24-05-2007 09:38:56
mpustel wrote: |
Anybody know how to get single pka value throw JChem cartridge jc_evaluate call? |
Code: |
select jc_evaluate(<input-molecule>, 'pka("acidic", "1")') from dual; |
User 8688ffe688
24-05-2007 19:38:01
User 851ac690a0
25-05-2007 06:58:32
Quote: |
I'm comparing some standard know molecules such as acetic acid, pyridine, phenol, formic acid, guanidine and the values do not match. |
User 2347372188
29-05-2007 22:07:26
User 851ac690a0
30-05-2007 09:34:51
ChemAxon e08c317633
30-05-2007 12:06:42
Code: |
select jc_evaluate(<input-molecule>, 'pka("basic", "1")') from dual; |
Code: |
select jc_evaluate(<input-molecule>, 'basicpKa("1")') from dual; |
Code: |
evaluate -e 'pka("basic", "1")' "NC(N)=N" 12.55 evaluate -e 'pka("basic", "1")' "C1=CC=NC=C1" 5.12 |
Code: |
evaluate -e 'donorCount()' "CC(O)=O" 1 evaluate -e 'acceptorCount()' "CC(O)=O" 2 evaluate -e 'donorCount()' "NC(N)=N" 3 evaluate -e 'acceptorCount()' "NC(N)=N" 3 |
Code: |
evaluate -e 'donSiteCount()' "CC(O)=O" 1 evaluate -e 'accSiteCount()' "CC(O)=O" 3 evaluate -e 'donSiteCount()' "NC(N)=N" 5 evaluate -e 'accSiteCount()' "NC(N)=N" 3 |
User 8688ffe688
30-05-2007 16:36:21
ChemAxon e08c317633
31-05-2007 10:14:00
mpustel wrote: |
Using the pH parameter in the acceptor and donor calculation is causing the difference in values. Should we not do this? |
User 851ac690a0
31-05-2007 22:39:00
Quote: |
...any way of returning a single value? |