Challenge: 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_weightandlogPas the value. - If the molecule object is not valid, store
Noneas the value for that SMILES string.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 6
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
Awesome!
Completion rate improved to 6.25
Challenge: 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_weightandlogPas the value. - If the molecule object is not valid, store
Noneas the value for that SMILES string.
Solution
Everything was clear?
Thanks for your feedback!
SectionΒ 1. ChapterΒ 6
single