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
Practice
Projects
Quizzes & Challenges
Quizzes
Challenges
/
Python for Chemoinformatics

bookChallenge: Compute Descriptors for a Compound Library

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

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

close

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

some-alt