セクション 3. 章 2
single
Challenge: Filter a Compound Library
メニューを表示するにはスワイプしてください
タスク
スワイプしてコーディングを開始
Your task is to implement a function that filters a list of SMILES strings, returning only those that pass Lipinski's Rule of Five. Use RDKit to calculate molecular properties.
- Define a function
filter_druglike_smiles(smiles_list)that takes a list of SMILES strings. - For each valid molecule, check the following criteria:
- Molecular weight is less than or equal to 500 daltons.
- LogP (octanol-water partition coefficient) is less than or equal to 5.
- No more than 5 hydrogen bond donors.
- No more than 10 hydrogen bond acceptors.
- Ignore any SMILES strings that cannot be parsed by RDKit.
- Return a list of SMILES strings that pass all the rules.
解答
すべて明確でしたか?
フィードバックありがとうございます!
セクション 3. 章 2
single
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください