User 7b0ee04e66
01-05-2008 10:54:47
Good morning,
I have the following query.
We have a small set of Reactions which we use to enumerate Combinatorial Libraries.
So far, I have automatically aromatised the Smarts and used them directly.
However, a recent example has shown that this sometimes causes problem.
This is the example Smirks un-aromatised, the reaction produces the expected product.
select jc_react('[#1,#6]-[#7-:2][N+:3]#[N:4].[#1,#6][C:5]#[C:1][#1,#6]>>[#1,#6][N:2]1[N:3]=[N:4][C:5]([#1,#6])=[C:1]1[#1,#6]','C[N-][N+]#N.CC#CC','method:n reverse:n unambiguousReactionsOnly:n allowDuplProdLists:n ignoreErrors:y')
as product from dual;
CN1N=NC(C)=C1C
However, when using the aromatised Smirks, the product is different and a double-bond is missing.
select jc_react('[#1,#6]-[#7-:2][N+:3]#[N:4].[#1,#6][C:5]#[C:1][#1,#6]>>[#1,#6]-[c:5]1[n:4][n:3][n:2](-[#1,#6])[c:1]1-[#1,#6]','C[N-][N+]#N.CC#CC','method:n reverse:n unambiguousReactionsOnly:n allowDuplProdLists:n ignoreErrors:y')
as product
from dual
Cc1[nH][nH]n(C)c1C, which after de-aromatisation gives CN1NNC(C)=C1C (I have lost a double-bond in the product)
What do you recommend?
Aromatise the reagents but not aromatising the Reaction? My aim is to apply the same rules to all reactions if possible.
Thanks
Catherine
I have the following query.
We have a small set of Reactions which we use to enumerate Combinatorial Libraries.
So far, I have automatically aromatised the Smarts and used them directly.
However, a recent example has shown that this sometimes causes problem.
This is the example Smirks un-aromatised, the reaction produces the expected product.
select jc_react('[#1,#6]-[#7-:2][N+:3]#[N:4].[#1,#6][C:5]#[C:1][#1,#6]>>[#1,#6][N:2]1[N:3]=[N:4][C:5]([#1,#6])=[C:1]1[#1,#6]','C[N-][N+]#N.CC#CC','method:n reverse:n unambiguousReactionsOnly:n allowDuplProdLists:n ignoreErrors:y')
as product from dual;
CN1N=NC(C)=C1C
However, when using the aromatised Smirks, the product is different and a double-bond is missing.
select jc_react('[#1,#6]-[#7-:2][N+:3]#[N:4].[#1,#6][C:5]#[C:1][#1,#6]>>[#1,#6]-[c:5]1[n:4][n:3][n:2](-[#1,#6])[c:1]1-[#1,#6]','C[N-][N+]#N.CC#CC','method:n reverse:n unambiguousReactionsOnly:n allowDuplProdLists:n ignoreErrors:y')
as product
from dual
Cc1[nH][nH]n(C)c1C, which after de-aromatisation gives CN1NNC(C)=C1C (I have lost a double-bond in the product)
What do you recommend?
Aromatise the reagents but not aromatising the Reaction? My aim is to apply the same rules to all reactions if possible.
Thanks
Catherine