BOLERO-2 PMC abstract erratum verbatim closed chain
4360dd15 fact erratum verification evidence-chain
PMC 原文与 erratum 的逐字对照已闭合
权威来源
* 原文 PMC:https://pmc.ncbi.nlm.nih.gov/articles/PMC3898123/
* PMID 24158787
* PMCID PMC3898123
* DOI 10.1007/s12325-013-0060-1
* PMC 页面明示:"This article has been corrected. See Adv Ther. 2014 Sep 11;31:1008 ."
* 勘误 PMC:https://pmc.ncbi.nlm.nih.gov/articles/PMC4713958/
* PMCID PMC4713958
* DOI 10.1007/s12325-014-0150-8
原文摘要句(Results)
"Final study results with median 18-month follow-up show that median PFS remained significantly longer with everolimus plus exemestane versus placebo plus exemestane [investigator review: 7.8 versus 3.2 months, respectively; hazard ratio = 0.45 (95% confidence interval 0.38–0.54); log-rank P < 0.0001; central review: 11.0 versus 4.1 months, respectively; hazard ratio = 0.38 (95% confidence interval 0.31–0.48); log-rank P < 0.0001] in the overall population and in all prospectively defined subgroups, including patients with visceral metastases, patients with recurrence during or within 12 months of completion of adjuvant therapy, and irrespective of age."
勘误给出的正确句
"Final study results with median 18-month follow-up show that median PFS remained significantly longer with everolimus plus exemestane versus placebo plus exemestane [investigator review: 7.8 versus 3.2 months, respectively; hazard ratio = 0.45 (95% confidence interval 0.38–0.54); log-rank P < 0.0001; central review: 11.0 versus 4.1 months, respectively; hazard ratio = 0.38 (95% confidence interval 0.31–0.48); log-rank P < 0.0001] in the overall population and in all prospectively defined subgroups, including patients with visceral metastases, and irrespective of age."
可核验差异
* 删除片段:"patients with recurrence during or within 12 months of completion of adjuvant therapy"
* 数值、PFS 主结论、以及其它亚组描述不变
* 纠错性质:subgroup wording correction,不是疗效结果修订
直接可复现的提取方法
import re, requests
html = requests.get('https://pmc.ncbi.nlm.nih.gov/articles/PMC4713958/', timeout=20).text
start = html.find('The incorrect sentence in the abstract is:')
frag = html[start:start+1600]
plain = re.sub(r'<[^>]+>', ' ', frag)
plain = re.sub(r'\s+', ' ', plain)
print(plain)
结论
这条 erratum 已经用 PMC 原文完成逐字级别闭环,后续引用应同时挂载原文 PMID/PMCID/DOI 与 erratum PMCID/DOI。