All Projects → duartegroup → Autode

duartegroup / Autode

Licence: mit
automated reaction profile generation

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Autode

site
Website for the Open Scholarship Strategy
Stars: ✭ 21 (-56.25%)
Mutual labels:  open-science
Opendata.cern.ch
Source code for the CERN Open Data portal
Stars: ✭ 411 (+756.25%)
Mutual labels:  open-science
Pyvista
3D plotting and mesh analysis through a streamlined interface for the Visualization Toolkit (VTK)
Stars: ✭ 734 (+1429.17%)
Mutual labels:  open-science
Simpeg
Simulation and Parameter Estimation in Geophysics - A python package for simulation and gradient based parameter estimation in the context of geophysical applications.
Stars: ✭ 283 (+489.58%)
Mutual labels:  open-science
Anahita
Anahita is a platform and framework for developing open science and knowledge sharing applications on a social networking foundation.
Stars: ✭ 369 (+668.75%)
Mutual labels:  open-science
Openml
Open Machine Learning
Stars: ✭ 489 (+918.75%)
Mutual labels:  open-science
open-life-science.github.io
A mentoring program for Open Life Science
Stars: ✭ 37 (-22.92%)
Mutual labels:  open-science
Itkexamples
Cookbook examples for the Insight Toolkit documented with Sphinx
Stars: ✭ 38 (-20.83%)
Mutual labels:  open-science
Ck
Collective Knowledge framework (CK) helps to organize black-box research software as a database of reusable components and micro-services with common APIs, automation actions and extensible meta descriptions. See real-world use cases from Arm, General Motors, ACM, Raspberry Pi foundation and others:
Stars: ✭ 395 (+722.92%)
Mutual labels:  open-science
Awesome Open Geoscience
Curated from repositories that make our lives as geoscientists, hackers and data wranglers easier or just more awesome
Stars: ✭ 668 (+1291.67%)
Mutual labels:  open-science
Food Inspections Evaluation
This repository contains the code to generate predictions of critical violations at food establishments in Chicago. It also contains the results of an evaluation of the effectiveness of those predictions.
Stars: ✭ 311 (+547.92%)
Mutual labels:  open-science
Repairnator
Software development bot that automatically repairs build failures on continuous integration. Join the bot revolution! 🌟🤖🌟💞
Stars: ✭ 340 (+608.33%)
Mutual labels:  open-science
Zenodo
Research. Shared.
Stars: ✭ 528 (+1000%)
Mutual labels:  open-science
Otb
Github mirror of https://gitlab.orfeo-toolbox.org/orfeotoolbox/otb
Stars: ✭ 265 (+452.08%)
Mutual labels:  open-science
Itk
Insight Toolkit (ITK) -- Official Repository. ITK builds on a proven, spatially-oriented architecture for processing, segmentation, and registration of scientific images in two, three, or more dimensions.
Stars: ✭ 801 (+1568.75%)
Mutual labels:  open-science
Open-Data-Lab
an initiative to provide infrastructure for reproducible workflows around open data
Stars: ✭ 26 (-45.83%)
Mutual labels:  open-science
Anonymous github
Anonymous Github is a proxy server to support anonymous browsing of Github repositories for open-science code and data.
Stars: ✭ 480 (+900%)
Mutual labels:  open-science
Doathon
Our discussion forum (see "issues") for the OpenCon Do-A-Thon, a day of trying, making, testing and doing to advance Open Research & Education. See our full website, with more information (including Github Help, and how to get involved).
Stars: ✭ 45 (-6.25%)
Mutual labels:  open-science
Meta Review
Manuscript describing open collaborative writing with Manubot
Stars: ✭ 34 (-29.17%)
Mutual labels:  open-science
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+12593.75%)
Mutual labels:  open-science

DOI Build Status codecov Language grade: Python conda License: MIT

alt text


Introduction

autodE is a Python module designed for the automated calculation of reaction profiles from just SMILES strings of reactant(s) and product(s).

Dependencies

The Python dependencies are listed in requirements.txt are best satisfied using a conda install (Miniconda or Anaconda).

Installation

To install autodE with conda:

conda install autode -c conda-forge

see the installation guide for installing from source or on Windows.

Usage

Reaction profiles in autodE are generated by initialising Reactant and Product objects, generating a Reaction from those and invoking calculate_reaction_profile(). For example, to calculate the profile for a 1,2 hydrogen shift in a propyl radical:

import autode as ade
ade.Config.n_cores = 8

r = ade.Reactant(name='reactant', smiles='CC[C]([H])[H]')
p = ade.Product(name='product', smiles='C[C]([H])C')

reaction = ade.Reaction(r, p, name='1-2_shift')
reaction.calculate_reaction_profile()

See examples/ for more examples and duartegroup.github.io/autodE/ for additional documentation.

Development

Pull requests are very welcome but must pass all the unit tests prior to being merged. Please write code and tests! Bugs and feature requests should be raised on the issue page.

Citation

If autodE is used in a publication please consider citing the paper:

@article{autodE,
  doi = {10.1002/anie.202011941},
  url = {https://doi.org/10.1002/anie.202011941},
  year = {2021},
  publisher = {Wiley},
  volume = {60},
  number = {8},
  pages = {4266--4274},
  author = {Tom A. Young and Joseph J. Silcock and Alistair J. Sterling and Fernanda Duarte},
  title = {{autodE}: Automated Calculation of Reaction Energy Profiles -- Application to Organic and Organometallic Reactions},
  journal = {Angewandte Chemie International Edition}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].