Skip to content

Commit d7a095b

Browse files
committed
Fix header
1 parent b440853 commit d7a095b

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

_includes/head.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<![CDATA[<head>
1+
<head>
22
<meta charset="utf-8">
33
<meta http-equiv="X-UA-Compatible" content="IE=edge">
44
<meta name="viewport" content="width=device-width, initial-scale=1">
@@ -22,5 +22,5 @@
2222
<script type="text/javascript" id="MathJax-script" async
2323
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js">
2424
</script>
25-
</head>]]>
25+
</head>
2626

_posts/2025-01-27-matching_molecular_series.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ On a practical level, we can break it down into a few steps.
2626
- Those unmatched fragments are your new R-groups to try!
2727

2828

29-
Before we really dive into the actual MMS, it's a good idea to add some code to standardize all our molecules.This will help make sure we don't miss anything due to different ways of representing similar molecules.
30-
The code below does a decent job, but note that we are _not_ checking for tautomers here. Depending on the dataset, you may want to add tautomer canonicalization.
29+
Before we really dive into the actual MMS, it's a good idea to add some code to standardize all our molecules. This will help make sure we don't miss anything due to different ways of representing similar molecules. The code below does a decent job, but note that we are _not_ checking for tautomers here. Depending on the dataset, you may want to add tautomer canonicalization.
3130

3231
```python
3332
def _standardize_mol(mol: Chem.Mol, frag_remover: rdMolStandardize.FragmentRemover) -> Chem.Mol:

0 commit comments

Comments
 (0)