Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Challenge: Compute Descriptors for a Compound Library | Molecular Representations and Parsing
Python for Chemoinformatics
Section 1. Chapter 6
single

single

bookChallenge: Compute Descriptors for a Compound Library

Swipe to show menu

Task

Swipe to start coding

Write a Python function that takes a list of SMILES strings and returns a dictionary mapping each SMILES to its molecular weight and logP.

  • For each SMILES string in smiles_list, generate a molecule object.
  • If the molecule object is valid, compute its molecular weight and logP.
  • Store the results in the dictionary with the SMILES string as the key and a dictionary of molecular_weight and logP as the value.
  • If the molecule object is not valid, store None as the value for that SMILES string.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 6
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt