You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe what you are trying to achieve
Hi developers, I see on QCSchema PySCF is listed as an available program choice, but I can't find singlepoint records of it.
`
import qcportal as ptl
client = ptl.PortalClient("https://api.qcarchive.molssi.org:443/")
results_pyscf = client.query_singlepoints(program="PySCF", limit=5)
for result in results_pyscf:
print(result)
`
Thank you. Describe methods you have considered
However, the program flag does not exist. Indeed, is there a way to search overall records regardless of record type (e.g. single point or torsion drive etc)?
The text was updated successfully, but these errors were encountered:
That is correct. Looking at the database, we do not have any PySCF computations on the two MolSSI-hosted instances. Anything you are looking for? We could set something up if you wanted something specific.
Here is what we have on the OpenFF instance (which you are connecting to):
@bennybp Thanks for the swift response! Yes, I would like to locate (and possibly submit) some pyscf dft single point data, but I can't find an example to follow.
Describe what you are trying to achieve
Hi developers, I see on QCSchema PySCF is listed as an available program choice, but I can't find singlepoint records of it.
`
import qcportal as ptl
client = ptl.PortalClient("https://api.qcarchive.molssi.org:443/")
results_pyscf = client.query_singlepoints(program="PySCF", limit=5)
for result in results_pyscf:
print(result)
`
Thank you.
Describe methods you have considered
results_pyscf = client.query_records(program="PySCF", limit=5)
However, the program flag does not exist. Indeed, is there a way to search overall records regardless of record type (e.g. single point or torsion drive etc)?
The text was updated successfully, but these errors were encountered: