Fix CP02712: replace corrupted methane SMILES with correct ANP structure#2
Open
anagnorisis2peripeteia wants to merge 1 commit into
Open
Conversation
CP02712 (Atrial Natriuretic Peptide) had its SMILES field corrupted with 28 disconnected methane fragments (C.C.C...C) instead of the actual 28-residue disulfide-cyclic peptide structure. Corrected fields (all recomputed from the correct structure): - SMILES: PubChem CID 16129708 isomeric SMILES - NS_InChI / InChIKey - Formula: C127H203N45O39S3 (was CH4 x28) - Exact_Mass, TPSA, LogP, Heavy_Atom_Count, HBD/HBA, rings, etc. - RDKit / Daylight-like / Morgan / MACCS fingerprints Fixes dfwlab#1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #1
What was wrong
CP02712(Atrial Natriuretic Peptide, 28-residue human form) had its SMILES field populated with 28 disconnected methane molecules:This appears to have been caused by a pipeline bug where one
Cfragment was emitted per residue when the SMILES lookup failed, rather than producing the actual structure. All downstream computed properties (InChI, InChIKey, formula, MW, fingerprints, etc.) were therefore computed from methane instead of ANP.What this PR changes
All fields in
Peptide_structrure_info.xlsxfor CP02712 have been recomputed from the correct structure:C.C.C.C...(×28)The 3D structure evidence (
PDB|1ANP), complex structure references, and other non-SMILES fields were left unchanged as they appear correct.Source
Notes
The
Peptide_basic_info.xlsxandPeptide_sequence_info.xlsxentries for CP02712 appear to be correct (the sequenceSLRRSSCFGGRMDRIGAQSGLGCNSFRYis intact); only the structure info file was affected.