-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get.volume giving error #123
Comments
What is the SMILES string? And does this fail with the latest version from
Github?
…On Wed, Jun 30, 2021 at 11:07 PM Garima ***@***.***> wrote:
am trying to use get.volume to get the molecular volume. But i am getting
error. Please would you help me to resolve the issue.
Here is my code:
mols <- parse.smiles(pep[4,SMILES])[[1]]
convert.implicit.to.explicit(mols)
get.tpsa(mols)
[1] 624.96
get.volume(mols)
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
org.openscience.cdk.exception.NoSuchAtomTypeException: The AtomType null
could not be found
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#123>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAIMOPNVSIO3IVMMO6KLFLTVPLYJANCNFSM47TSBS3Q>
.
|
install_github("https://github.com/CDK-R/rcdklibs") They dont work for me. How to install this tool from github |
SMILES is a column name in a data table with value in 5th row |
What is the error?
…Sent from my iPhone
On Jul 2, 2021, at 7:58 PM, Garima ***@***.***> wrote:
SMILES is a column name in a data table with value in 5th row
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
I was able to install from github. its= gives me same errors. |
|
What is the SMILES you're trying to parse?
…On Fri, Jul 2, 2021 at 8:22 PM Garima ***@***.***> wrote:
mols2 <- parse.smiles(pep[2,SMILES])[[1]]
class(mols2)
[1] "jobjRef"
attr(,"package")
[1] "rJava"
kk=view.molecule.2d(mols2)
Error in view.molecule.2d(mols2) : java.lang.NoSuchMethodError:
get.volume(mols2)
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
org.openscience.cdk.exception.NoSuchAtomTypeException: The AtomType null
could not be found
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#123 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAIMOOXFDDMWD7HQY7GXXTTVZJ4TANCNFSM47TSBS3Q>
.
|
The following works for me on OS X (10.15.7), R 4.0.2
m <- parse.smiles('CCC')[[1]]
view.molecule.2d(m)
set.atom.types(mol=m)
get.volume(m)
[1] 60.44441
…On Fri, Jul 2, 2021 at 8:22 PM Garima ***@***.***> wrote:
mols2 <- parse.smiles(pep[2,SMILES])[[1]]
class(mols2)
[1] "jobjRef"
attr(,"package")
[1] "rJava"
kk=view.molecule.2d(mols2)
Error in view.molecule.2d(mols2) : java.lang.NoSuchMethodError:
get.volume(mols2)
Error in .jcall("RJavaTools", "Ljava/lang/Object;", "invokeMethod", cl, :
org.openscience.cdk.exception.NoSuchAtomTypeException: The AtomType null
could not be found
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#123 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAIMOOXFDDMWD7HQY7GXXTTVZJ4TANCNFSM47TSBS3Q>
.
|
am trying to use get.volume to get the molecular volume. But i am getting error. Please would you help me to resolve the issue.
Here is my code:
The text was updated successfully, but these errors were encountered: