text

Security

Confidentiality and security is crucial in chemistry, and we take protecting our users' data very seriously. Here's what we do to protect the confidentiality of your data:

Nevertheless, there's a limit to how secure a web application can be. Our software has to be able to read your data in order to load web pages, so your data has to reside in our database. This is no different than how any other website works (email, banking, etc), but we recognize that some data is so confidential that you might not want us to store it at all, and we have a few special features for such cases.

First, our Python API allows you to automatically delete all records of your calculation from our database once it's finished. This makes running calculations through the API stateless. We'll store the calculation information while it's running, but once the result is returned no copy of the data will exist on our servers. This is very simple in practice—just set delete_when_finished=True in the client when running in blocking mode.

import rowan
rowan.api_key = "rowan-sk123456"

client = rowan.Client(blocking=True, delete_when_finished=True)

print(client.compute("pka", input_smiles="c1ccccc1O"))

For cases where even stricter security is necessary, we've also listed our software as an Amazon Machine Image (AMI) on AWS Marketplace. Purchasing the Rowan AMI allows you to launch EC2 instances in your own AWS account that come pre-loaded with all of Rowan's scientific capabilities. You can deploy the AMI inside your own virtual private cloud and run our algorithms on confidential data—if even the CIA runs on AWS, you can be confident that your data is safe there. Our scientific code is pretty user-friendly, but it's not as easy to use as our website, so we'll offer phone/email support and white-glove onboarding for AMI customers.

We care about doing a good job here and are always open to being corrected. If you have an idea for how we could improve our security, let us know at contact@rowansci.com!

text