@manuscripts/transform 4.3.53 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/cjs/jats/exporter/jats-exporter.js +3 -0
- package/dist/cjs/jats/importer/jats-dom-parser.js +41 -1
- package/dist/cjs/schema/index.js +9 -0
- package/dist/cjs/schema/nodes/headshot_element.js +38 -0
- package/dist/cjs/schema/nodes/headshot_grid.js +37 -0
- package/dist/cjs/schema/nodes/headshot_image.js +51 -0
- package/dist/cjs/transformer/node-names.js +2 -0
- package/dist/cjs/transformer/node-title.js +6 -0
- package/dist/cjs/version.js +1 -1
- package/dist/es/jats/__tests__/jats-roundtrip.test.js +3 -3
- package/dist/es/jats/exporter/jats-exporter.js +3 -0
- package/dist/es/jats/importer/jats-dom-parser.js +41 -1
- package/dist/es/schema/index.js +9 -0
- package/dist/es/schema/nodes/headshot_element.js +34 -0
- package/dist/es/schema/nodes/headshot_grid.js +33 -0
- package/dist/es/schema/nodes/headshot_image.js +48 -0
- package/dist/es/transformer/node-names.js +2 -0
- package/dist/es/transformer/node-title.js +6 -0
- package/dist/es/version.js +1 -1
- package/dist/types/jats/__tests__/utils.d.ts +1 -1
- package/dist/types/schema/index.d.ts +3 -0
- package/dist/types/schema/nodes/headshot_element.d.ts +25 -0
- package/dist/types/schema/nodes/headshot_grid.d.ts +24 -0
- package/dist/types/schema/nodes/headshot_image.d.ts +26 -0
- package/dist/types/schema/types.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +22 -21
- package/src/errors.ts +28 -0
- package/src/getVersion.ts +21 -0
- package/src/index.ts +28 -0
- package/src/jats/__tests__/__fixtures__/debug-example.xml +136 -0
- package/src/jats/__tests__/__fixtures__/jats-abstract-no-body.xml +163 -0
- package/src/jats/__tests__/__fixtures__/jats-citations.xml +472 -0
- package/src/jats/__tests__/__fixtures__/jats-comments.xml +46 -0
- package/src/jats/__tests__/__fixtures__/jats-document.xml +134 -0
- package/src/jats/__tests__/__fixtures__/jats-example-doc.xml +1235 -0
- package/src/jats/__tests__/__fixtures__/jats-example-front-only.xml +26 -0
- package/src/jats/__tests__/__fixtures__/jats-example-full.xml +209 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-back.xml +156 -0
- package/src/jats/__tests__/__fixtures__/jats-example-no-body.xml +91 -0
- package/src/jats/__tests__/__fixtures__/jats-example.xml +221 -0
- package/src/jats/__tests__/__fixtures__/jats-fn-group.xml +60 -0
- package/src/jats/__tests__/__fixtures__/jats-import-no-refs.xml +1077 -0
- package/src/jats/__tests__/__fixtures__/jats-import.xml +1578 -0
- package/src/jats/__tests__/__fixtures__/jats-roundtrip.xml +133 -0
- package/src/jats/__tests__/__fixtures__/jats-tables-example.xml +2043 -0
- package/src/jats/__tests__/__fixtures__/math-fragment.xml +12 -0
- package/src/jats/__tests__/__snapshots__/citeproc.test.ts.snap +57 -0
- package/src/jats/__tests__/__snapshots__/create-article-node.test.ts.snap +65 -0
- package/src/jats/__tests__/__snapshots__/jats-exporter.test.ts.snap +7 -0
- package/src/jats/__tests__/__snapshots__/jats-importer.test.ts.snap +59796 -0
- package/src/jats/__tests__/__snapshots__/jats-roundtrip.test.ts.snap +18 -0
- package/src/jats/__tests__/citations.ts +25 -0
- package/src/jats/__tests__/citeproc.test.ts +195 -0
- package/src/jats/__tests__/create-article-node.test.ts +29 -0
- package/src/jats/__tests__/data/section-categories.ts +212 -0
- package/src/jats/__tests__/files.ts +24 -0
- package/src/jats/__tests__/jats-exporter.test.ts +223 -0
- package/src/jats/__tests__/jats-importer.test.ts +567 -0
- package/src/jats/__tests__/jats-roundtrip.test.ts +66 -0
- package/src/jats/__tests__/utils.ts +90 -0
- package/src/jats/exporter/citeproc.ts +265 -0
- package/src/jats/exporter/jats-exporter.ts +2093 -0
- package/src/jats/exporter/jats-versions.ts +50 -0
- package/src/jats/exporter/labels.ts +101 -0
- package/src/jats/importer/create-article-node.ts +52 -0
- package/src/jats/importer/jats-comments.ts +111 -0
- package/src/jats/importer/jats-dom-parser.ts +1306 -0
- package/src/jats/importer/jats-parser-utils.ts +234 -0
- package/src/jats/importer/jats-transformations.ts +591 -0
- package/src/jats/importer/parse-jats-article.ts +106 -0
- package/src/jats/index.ts +21 -0
- package/src/jats/types.ts +16 -0
- package/src/lib/__tests__/footnotes.test.ts +36 -0
- package/src/lib/citeproc.ts +30 -0
- package/src/lib/credit-roles.ts +91 -0
- package/src/lib/deafults.ts +17 -0
- package/src/lib/footnotes.ts +85 -0
- package/src/lib/html.ts +56 -0
- package/src/lib/section-categories.ts +27 -0
- package/src/lib/utils.ts +145 -0
- package/src/lib/xml.ts +28 -0
- package/src/schema/__tests__/docs.ts +1911 -0
- package/src/schema/__tests__/groups.test.ts +61 -0
- package/src/schema/__tests__/migration.test.ts +23 -0
- package/src/schema/groups.ts +36 -0
- package/src/schema/index.ts +295 -0
- package/src/schema/marks.ts +254 -0
- package/src/schema/migration/migrate.ts +77 -0
- package/src/schema/migration/migration-script.ts +26 -0
- package/src/schema/migration/migration-scripts/1.2.5.ts +44 -0
- package/src/schema/migration/migration-scripts/2.3.22.ts +52 -0
- package/src/schema/migration/migration-scripts/3.0.12.ts +33 -0
- package/src/schema/migration/migration-scripts/3.0.21.ts +50 -0
- package/src/schema/migration/migration-scripts/3.0.30.ts +65 -0
- package/src/schema/migration/migration-scripts/3.0.31.ts +40 -0
- package/src/schema/migration/migration-scripts/3.0.41.ts +37 -0
- package/src/schema/migration/migration-scripts/3.0.55.ts +42 -0
- package/src/schema/migration/migration-scripts/3.0.56.ts +114 -0
- package/src/schema/migration/migration-scripts/4.2.13.ts +37 -0
- package/src/schema/migration/migration-scripts/4.2.15.ts +48 -0
- package/src/schema/migration/migration-scripts/4.3.23.ts +55 -0
- package/src/schema/migration/migration-scripts/4.3.34.ts +132 -0
- package/src/schema/migration/migration-scripts/4.3.35.ts +41 -0
- package/src/schema/migration/migration-scripts/index.ts +49 -0
- package/src/schema/nodes/abstracts.ts +29 -0
- package/src/schema/nodes/affiliation.ts +88 -0
- package/src/schema/nodes/affiliations.ts +30 -0
- package/src/schema/nodes/alt_text.ts +36 -0
- package/src/schema/nodes/alt_title.ts +40 -0
- package/src/schema/nodes/alt_titles_section.ts +58 -0
- package/src/schema/nodes/attachment.ts +46 -0
- package/src/schema/nodes/attachments.ts +45 -0
- package/src/schema/nodes/attribution.ts +38 -0
- package/src/schema/nodes/author_notes.ts +44 -0
- package/src/schema/nodes/award.ts +52 -0
- package/src/schema/nodes/awards.ts +45 -0
- package/src/schema/nodes/backmatter.ts +31 -0
- package/src/schema/nodes/bibliography_element.ts +58 -0
- package/src/schema/nodes/bibliography_item.ts +108 -0
- package/src/schema/nodes/bibliography_section.ts +60 -0
- package/src/schema/nodes/blockquote_element.ts +79 -0
- package/src/schema/nodes/body.ts +29 -0
- package/src/schema/nodes/box_element.ts +67 -0
- package/src/schema/nodes/caption.ts +67 -0
- package/src/schema/nodes/caption_title.ts +67 -0
- package/src/schema/nodes/citation.ts +70 -0
- package/src/schema/nodes/comment.ts +50 -0
- package/src/schema/nodes/comments.ts +28 -0
- package/src/schema/nodes/contributor.ts +87 -0
- package/src/schema/nodes/contributors.ts +40 -0
- package/src/schema/nodes/core_section.ts +27 -0
- package/src/schema/nodes/corresp.ts +49 -0
- package/src/schema/nodes/cross_reference.ts +64 -0
- package/src/schema/nodes/doc.ts +21 -0
- package/src/schema/nodes/embed.ts +55 -0
- package/src/schema/nodes/equation.ts +65 -0
- package/src/schema/nodes/equation_element.ts +61 -0
- package/src/schema/nodes/figure.ts +65 -0
- package/src/schema/nodes/figure_element.ts +73 -0
- package/src/schema/nodes/footnote.ts +95 -0
- package/src/schema/nodes/footnotes_element.ts +69 -0
- package/src/schema/nodes/footnotes_section.ts +61 -0
- package/src/schema/nodes/general_table_footnote.ts +42 -0
- package/src/schema/nodes/graphical_abstract_section.ts +62 -0
- package/src/schema/nodes/hard_break.ts +36 -0
- package/src/schema/nodes/headshot_element.ts +48 -0
- package/src/schema/nodes/headshot_grid.ts +46 -0
- package/src/schema/nodes/headshot_image.ts +65 -0
- package/src/schema/nodes/hero_image.ts +46 -0
- package/src/schema/nodes/highlight_marker.ts +68 -0
- package/src/schema/nodes/image_element.ts +49 -0
- package/src/schema/nodes/inline_equation.ts +68 -0
- package/src/schema/nodes/inline_footnote.ts +66 -0
- package/src/schema/nodes/keyword.ts +61 -0
- package/src/schema/nodes/keyword_group.ts +63 -0
- package/src/schema/nodes/keywords.ts +59 -0
- package/src/schema/nodes/keywords_element.ts +64 -0
- package/src/schema/nodes/link.ts +79 -0
- package/src/schema/nodes/list.ts +134 -0
- package/src/schema/nodes/listing.ts +91 -0
- package/src/schema/nodes/listing_element.ts +61 -0
- package/src/schema/nodes/long_desc.ts +36 -0
- package/src/schema/nodes/manuscript.ts +86 -0
- package/src/schema/nodes/missing_figure.ts +59 -0
- package/src/schema/nodes/paragraph.ts +77 -0
- package/src/schema/nodes/placeholder.ts +62 -0
- package/src/schema/nodes/placeholder_element.ts +60 -0
- package/src/schema/nodes/pullquote_element.ts +81 -0
- package/src/schema/nodes/quote_image.ts +64 -0
- package/src/schema/nodes/section.ts +69 -0
- package/src/schema/nodes/section_label.ts +39 -0
- package/src/schema/nodes/section_title.ts +58 -0
- package/src/schema/nodes/subtitle.ts +40 -0
- package/src/schema/nodes/subtitles.ts +51 -0
- package/src/schema/nodes/supplement.ts +77 -0
- package/src/schema/nodes/supplements.ts +60 -0
- package/src/schema/nodes/table.ts +144 -0
- package/src/schema/nodes/table_col.ts +76 -0
- package/src/schema/nodes/table_element.ts +67 -0
- package/src/schema/nodes/table_element_footer.ts +42 -0
- package/src/schema/nodes/text.ts +31 -0
- package/src/schema/nodes/title.ts +43 -0
- package/src/schema/nodes/trans_abstract.ts +58 -0
- package/src/schema/nodes/trans_graphical_abstract.ts +67 -0
- package/src/schema/types.ts +243 -0
- package/src/tests.ts +33 -0
- package/src/transformer/id.ts +23 -0
- package/src/transformer/index.ts +21 -0
- package/src/transformer/node-names.ts +75 -0
- package/src/transformer/node-title.ts +116 -0
- package/src/transformer/node-types.ts +39 -0
- package/src/transformer/node-validator.ts +82 -0
- package/src/types.ts +25 -0
- package/src/version.ts +1 -0
|
@@ -0,0 +1,2043 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.2 20190208//EN" "JATS-archivearticle1.dtd">
|
|
3
|
+
<article xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:xlink="http://www.w3.org/1999/xlink" article-type="research-article" dtd-version="1.2" xml:lang="en">
|
|
4
|
+
<front>
|
|
5
|
+
<journal-meta>
|
|
6
|
+
<journal-id journal-id-type="publisher-id">HON</journal-id>
|
|
7
|
+
<journal-id journal-id-type="nlm-ta">Hematological Oncology</journal-id>
|
|
8
|
+
<journal-id journal-id-type="doi" />
|
|
9
|
+
<journal-title-group>
|
|
10
|
+
<journal-title>Hematological Oncology</journal-title>
|
|
11
|
+
<abbrev-journal-title abbrev-type="pubmed">Hematological Oncology</abbrev-journal-title>
|
|
12
|
+
</journal-title-group>
|
|
13
|
+
<issn pub-type="ppub">0278-0232</issn>
|
|
14
|
+
<issn pub-type="epub">1540-1233</issn>
|
|
15
|
+
<publisher>
|
|
16
|
+
<publisher-name>John Wiley and Sons</publisher-name>
|
|
17
|
+
</publisher>
|
|
18
|
+
</journal-meta>
|
|
19
|
+
<article-meta>
|
|
20
|
+
<article-id pub-id-type="publisher-id">HON-20-0144</article-id>
|
|
21
|
+
<article-categories>
|
|
22
|
+
<subj-group subj-group-type="heading">
|
|
23
|
+
<subject>Original Research Article</subject>
|
|
24
|
+
</subj-group>
|
|
25
|
+
</article-categories>
|
|
26
|
+
<title-group>
|
|
27
|
+
<article-title>Low-dose pembrolizumab and nivolumab were efficacious and safe in relapsed and refractory classical Hodgkin lymphoma: experience in a resource-constrained setting</article-title>
|
|
28
|
+
</title-group>
|
|
29
|
+
<contrib-group>
|
|
30
|
+
<contrib contrib-type="author">
|
|
31
|
+
<name>
|
|
32
|
+
<surname>Chan</surname>
|
|
33
|
+
<given-names>Thomas S.Y.</given-names>
|
|
34
|
+
</name>
|
|
35
|
+
<email xlink:href="thomas28@netvigator.com">thomas28@netvigator.com</email>
|
|
36
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
37
|
+
<sup>1</sup>
|
|
38
|
+
</xref>
|
|
39
|
+
</contrib>
|
|
40
|
+
<contrib contrib-type="author">
|
|
41
|
+
<name>
|
|
42
|
+
<surname>Hwang</surname>
|
|
43
|
+
<given-names>Yu-Yan</given-names>
|
|
44
|
+
</name>
|
|
45
|
+
<email xlink:href="yyhwang922@gmail.com">yyhwang922@gmail.com</email>
|
|
46
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
47
|
+
<sup>1</sup>
|
|
48
|
+
</xref>
|
|
49
|
+
</contrib>
|
|
50
|
+
<contrib contrib-type="author">
|
|
51
|
+
<name>
|
|
52
|
+
<surname>Khong</surname>
|
|
53
|
+
<given-names>Pek-Lan</given-names>
|
|
54
|
+
</name>
|
|
55
|
+
<email xlink:href="plkhong@hku.hk">plkhong@hku.hk</email>
|
|
56
|
+
<xref ref-type="aff" rid="HON-20-0144-aff2">
|
|
57
|
+
<sup>2</sup>
|
|
58
|
+
</xref>
|
|
59
|
+
</contrib>
|
|
60
|
+
<contrib contrib-type="author">
|
|
61
|
+
<name>
|
|
62
|
+
<surname>Leung</surname>
|
|
63
|
+
<given-names>Anskar Y.H.</given-names>
|
|
64
|
+
</name>
|
|
65
|
+
<email xlink:href="ayhleung@hku.hk">ayhleung@hku.hk</email>
|
|
66
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
67
|
+
<sup>1</sup>
|
|
68
|
+
</xref>
|
|
69
|
+
</contrib>
|
|
70
|
+
<contrib contrib-type="author">
|
|
71
|
+
<contrib-id contrib-id-type="orcid" authenticated="true">https://orcid.org/0000-0003-2427-915X</contrib-id>
|
|
72
|
+
<name>
|
|
73
|
+
<surname>Chim</surname>
|
|
74
|
+
<given-names>Chor-Sang</given-names>
|
|
75
|
+
</name>
|
|
76
|
+
<email xlink:href="jcschim@hku.hk">jcschim@hku.hk</email>
|
|
77
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
78
|
+
<sup>1</sup>
|
|
79
|
+
</xref>
|
|
80
|
+
</contrib>
|
|
81
|
+
<contrib contrib-type="author">
|
|
82
|
+
<name>
|
|
83
|
+
<surname>Tse</surname>
|
|
84
|
+
<given-names>Eric</given-names>
|
|
85
|
+
</name>
|
|
86
|
+
<email xlink:href="ewctse@hku.hk">ewctse@hku.hk</email>
|
|
87
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
88
|
+
<sup>1</sup>
|
|
89
|
+
</xref>
|
|
90
|
+
</contrib>
|
|
91
|
+
<contrib contrib-type="author" corresp="yes">
|
|
92
|
+
<contrib-id contrib-id-type="orcid" authenticated="true">https://orcid.org/0000-0001-8156-6978</contrib-id>
|
|
93
|
+
<name>
|
|
94
|
+
<surname>Kwong</surname>
|
|
95
|
+
<given-names>Yok-Lam</given-names>
|
|
96
|
+
</name>
|
|
97
|
+
<email xlink:href="mzerkani+Author3@atypon.com">mzerkani+Author3@atypon.com</email>
|
|
98
|
+
<xref ref-type="aff" rid="HON-20-0144-aff1">
|
|
99
|
+
<sup>1</sup>
|
|
100
|
+
</xref>
|
|
101
|
+
</contrib>
|
|
102
|
+
<aff id="HON-20-0144-aff1">
|
|
103
|
+
<label>1</label>
|
|
104
|
+
<institution content-type="dept">Department of Medicine</institution>,
|
|
105
|
+
<institution>Queen Mary Hospital</institution>,
|
|
106
|
+
<country country="hk">Hong Kong</country>
|
|
107
|
+
</aff>
|
|
108
|
+
<aff id="HON-20-0144-aff2">
|
|
109
|
+
<label>2</label>
|
|
110
|
+
<institution content-type="dept">Department of Diagnostic Radiology</institution>,
|
|
111
|
+
<institution>Queen Mary Hospital</institution>,
|
|
112
|
+
<country country="hk">Hong Kong</country>
|
|
113
|
+
</aff>
|
|
114
|
+
</contrib-group>
|
|
115
|
+
<author-notes>
|
|
116
|
+
<corresp id="HON-20-0144-cor1">
|
|
117
|
+
<bold>Correspondence</bold>Y.L. Kwong, Department of Medicine, Professorial Block, Queen Mary Hospital, Pokfulam Road, Hong Kong, China, Email:
|
|
118
|
+
<email xlink:href="ylkwong@hkucc.hku.hk">ylkwong@hkucc.hku.hk</email>
|
|
119
|
+
</corresp>
|
|
120
|
+
<fn id="HON-20-0144-afn-0001">
|
|
121
|
+
<p>Manuscript information</p>
|
|
122
|
+
</fn>
|
|
123
|
+
<fn fn-type="con">
|
|
124
|
+
<p content-type="fn-title">AUTHOR CONTRIBUTIONS</p>
|
|
125
|
+
<p>Thomas S.Y. Chan: treated the patients, wrote and approved the manuscript</p>
|
|
126
|
+
<p>Yu-Yan Hwang: treated the patients, wrote and approved the manuscript</p>
|
|
127
|
+
<p>Pek-Lan Khong: performed the radiologic diagnosis, and approved the manuscript</p>
|
|
128
|
+
<p>Anskar Y.H. Leung: treated the patients, and approved the manuscript</p>
|
|
129
|
+
<p>Chor-Sang Chim: treated the patients, and approved the manuscript</p>
|
|
130
|
+
<p>Eric Tse: treated the patients, and approved the manuscript</p>
|
|
131
|
+
<p>Yok-Lam Kwong: treated the patients, wrote and approved the manuscript</p>
|
|
132
|
+
</fn>
|
|
133
|
+
</author-notes>
|
|
134
|
+
<pub-date pub-type="ppub">
|
|
135
|
+
<year />
|
|
136
|
+
</pub-date>
|
|
137
|
+
<volume />
|
|
138
|
+
<history>
|
|
139
|
+
<date date-type="received">
|
|
140
|
+
<day>04</day>
|
|
141
|
+
<month>04</month>
|
|
142
|
+
<year>2020</year>
|
|
143
|
+
</date>
|
|
144
|
+
<date date-type="rev-recd">
|
|
145
|
+
<day>26</day>
|
|
146
|
+
<month>06</month>
|
|
147
|
+
<year>2020</year>
|
|
148
|
+
</date>
|
|
149
|
+
<date date-type="accepted">
|
|
150
|
+
<day>02</day>
|
|
151
|
+
<month>08</month>
|
|
152
|
+
<year>2020</year>
|
|
153
|
+
</date>
|
|
154
|
+
</history>
|
|
155
|
+
<permissions>
|
|
156
|
+
<copyright-statement>© 2020 John Wiley & Sons, Ltd.</copyright-statement>
|
|
157
|
+
</permissions>
|
|
158
|
+
<abstract>
|
|
159
|
+
<p>The efficacy and safety of low-dose anti-PD1 antibodies in relapsed/refractory classical Hodgkin lymphoma (cHL) require confirmation. Pembrolizumab (100 mg every 3 weeks, Q3W) or nivolumab (40 mg Q2W) were administered to patients with relapsed/refractory cHL. In the pembrolizumab cohort (
|
|
160
|
+
<italic>N</italic> = 11), who had failed a median of 3 (1–6) therapies (brentuximab vedotin, BV: 91%; autologous hematopoietic stem cell transplantation, auto-HSCT: 18%), the overall-response rate (ORR) by positron emission tomography computed tomography was 100% (metabolic complete response, mCR: 73%; partial response, PR: 27%). Median cumulative dose for achieving best response was 400 (300–800) mg. Median progression-free-survival (PFS) was 35 months. Median overall-survival (OS) was not reached. Adverse events (AEs) of grade 1–2 were observed in 3 patients. In the nivolumab cohort (
|
|
161
|
+
<italic>N</italic> = 6), who had failed a median of 3 (2–6) therapies (BV: 50%; auto-HSCT: 17%, allogeneic HSCT: 34%), the ORR was 100% (mCR: 67%; PR: 17%; indeterminate response: 17%). Median cumulative dose for achieving best response was 160 (160–360) mg. Median PFS was 33 months. Median OS was not reached. AEs of grade 1–2 were observed in 4 patients, 2 of whom had pre-existing autoimmune conditions. Five patients with Epstein-Barr virus (EBV) positive Reed-Sternberg cells underwent monitoring of plasma EBV DNA, which became negative in four mCR patients but remained positive in one PR patient who died ultimately from refractory lymphoma. Low-dose pembrolizumab and nivolumab were highly efficacious and safe in relapsed/refractory cHL. These observations have significant financial implications in resource-constrained settings.
|
|
162
|
+
</p>
|
|
163
|
+
</abstract>
|
|
164
|
+
<kwd-group kwd-group-type="author">
|
|
165
|
+
<title>KEYWORDS: </title>
|
|
166
|
+
<kwd>pembrolizumab</kwd>
|
|
167
|
+
<kwd>nivolumab</kwd>
|
|
168
|
+
<kwd>low-dose</kwd>
|
|
169
|
+
<kwd>relapsed</kwd>
|
|
170
|
+
<kwd>refractory</kwd>
|
|
171
|
+
<kwd>Hodgkin lymphoma</kwd>
|
|
172
|
+
</kwd-group>
|
|
173
|
+
<counts>
|
|
174
|
+
<count count-type="box" count="0" />
|
|
175
|
+
<fig-count count="3" />
|
|
176
|
+
<table-count count="3" />
|
|
177
|
+
<equation-count count="0" />
|
|
178
|
+
<ref-count count="21" />
|
|
179
|
+
<page-count count="13" />
|
|
180
|
+
<word-count count="6069" />
|
|
181
|
+
</counts>
|
|
182
|
+
</article-meta>
|
|
183
|
+
</front>
|
|
184
|
+
<body>
|
|
185
|
+
<sec sec-type="intro">
|
|
186
|
+
<title>INTRODUCTION</title>
|
|
187
|
+
<p>Amplification of chromosome 9p24.1 and JAK/STAT pathway activation are characteristic of the neoplastic Reed-Sternberg cells of classical Hodgkin lymphoma (cHL).
|
|
188
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0001">
|
|
189
|
+
<sup>1</sup>
|
|
190
|
+
</xref> These aberrations result in overexpression of two proteins, programmed death ligand 1 (PD-L1) and PD-L2, cognate ligands for the T-cell immune checkpoint programmed cell death protein 1 (PD1). Ligation of PDL1 and PDL2 on Reed-Sternberg cells with PD1 on effector T-cells leads to suppression of anti-lymphoma cell-mediated immunity.
|
|
191
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0002">
|
|
192
|
+
<sup>2</sup>
|
|
193
|
+
</xref> Accordingly, PD1 blockade restores anti-lymphoma immunity, and has become a highly effective treatment for relapsed/refractory cHL.
|
|
194
|
+
</p>
|
|
195
|
+
<p>Two anti-PD1 antibodies nivolumab and pembrolizumab are approved for relapsed/refractory cHL. During their development, different dosing schedules had been employed. For nivolumab, in its phase 1 study in different malignancies, doses from 0.1 to 10 mg/kg every 2 weeks (Q2W) were used.
|
|
196
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0003">
|
|
197
|
+
<sup>3</sup>
|
|
198
|
+
</xref> In its phase 1 in cHL, 1–3 mg/kg Q2W was used.
|
|
199
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0004">
|
|
200
|
+
<sup>4</sup>
|
|
201
|
+
</xref> Its currently approved dose for cHL is 240 mg Q2W or 480 mg Q4W. For pembrolizumab, 2–10 mg/kg Q2W was used in its phase 1 study in melanoma.
|
|
202
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0005">
|
|
203
|
+
<sup>5</sup>
|
|
204
|
+
</xref> In the ensuing phase 1b study in cHL, 10 mg/kg Q2W was used.
|
|
205
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0006">
|
|
206
|
+
<sup>6</sup>
|
|
207
|
+
</xref> In a later phase 2 study, pembrolizumab was used at 200 mg Q3W.
|
|
208
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0007">
|
|
209
|
+
<sup>7</sup>
|
|
210
|
+
</xref> Its currently approved dose for cHL is 200 mg Q3W. Interestingly, a direct dose–response relationship has not been demonstrated for anti-PD1 antibodies, with escalations above currently recommended dosing not associated with improved efficacy. Nevertheless, in translational studies using preclinical modeling, with receptor occupancy regarded as driving tumor inhibition, pembrolizumb at 2mg/kg Q3W was observed to be efficacious.
|
|
211
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0008">
|
|
212
|
+
<sup>8</sup>
|
|
213
|
+
</xref>
|
|
214
|
+
</p>
|
|
215
|
+
<p>Reimbursement of expensive novel drugs is typically slow in resource-constrained regions. Very few Asian countries reimburse nivolumab or pembrolizumab for relapsed/refractory cHL. Outside trials, these drugs are available only to patients of means. Non-affluent patients have to settle for toxic and often ineffective salvage chemotherapies.</p>
|
|
216
|
+
<p>In Hong Kong, neither pembrolizumab nor nivolumab is reimbursed for cHL. In order that needy patients might receive these expensive drugs, we initially treated relapsed/refractory cHL with low-dose pembrolizumab (100 mg, the smallest vial available, Q3W),
|
|
217
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0009">
|
|
218
|
+
<sup>9</sup>
|
|
219
|
+
</xref> at a time when published data suggested dosing with 10 mg/kg Q2W.
|
|
220
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0007">
|
|
221
|
+
<sup>7</sup>
|
|
222
|
+
</xref> Subsequent small case series showed that low-dose pembrolizuamb (100 mg Q3W) resulted in high response rates.
|
|
223
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0009 HON-20-0144-bib-0010">
|
|
224
|
+
<sup>9,10</sup>
|
|
225
|
+
</xref> Similarly, we showed that low-dose nivolumab at 40 mg (smallest vial available) Q2W was also effective in relapsed/refractory cHL.
|
|
226
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0011">
|
|
227
|
+
<sup>11</sup>
|
|
228
|
+
</xref>
|
|
229
|
+
</p>
|
|
230
|
+
<p>In this report, we described the use of low-dose anti-PD1 antibodies in a larger cohort of relapsed/refractory cHL.</p>
|
|
231
|
+
</sec>
|
|
232
|
+
<sec sec-type="materials|methods">
|
|
233
|
+
<title>MATERIALS AND METHODS</title>
|
|
234
|
+
<sec sec-type="subjects">
|
|
235
|
+
<title>Patients</title>
|
|
236
|
+
<p>This retrospective single-center study included all consecutive patients with relapsed/refractory cHL treated with low-dose anti-PD1 antibodies in a 4.8-year period (May 2015 to February 2020), who had at least one radiologic response assessment after treatment. There were otherwise no inclusion or exclusion criteria. Patients gave informed consent to treatment. The study was approved by the institute review board. Data were censored on February 29, 2020.</p>
|
|
237
|
+
</sec>
|
|
238
|
+
<sec>
|
|
239
|
+
<title>Treatment and monitoring</title>
|
|
240
|
+
<p>Patients received pembrolizumab at 100 mg Q3W or nivolumab at 40 mg Q2W. The choice was determined by affordability (nivolumab was less expensive than pembrolizumab at the doses administered), and the choice of patients or physicians. Blood counts, glucose and serum biochemistry, chest radiograph, morning cortisol level and thyroid function test were monitored regularly. Additional endocrine tests were instituted as appropriate. Responding patients were offered autologous hematopoietic stem cell transplantation (auto-HSCT) if not previously performed. Patients not consenting to auto-HSCT were treated with anti-PD1 antibody for up to 2 years, followed by observation. Immune-related adverse events (AE) were monitored for, and if present were treated according to standard recommendations.
|
|
241
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0012">
|
|
242
|
+
<sup>12</sup>
|
|
243
|
+
</xref>
|
|
244
|
+
</p>
|
|
245
|
+
</sec>
|
|
246
|
+
<sec>
|
|
247
|
+
<title>Response assessment</title>
|
|
248
|
+
<p>Responses were assessed with 18-F fluorodeoxyglucose (FDG) positron emission tomography computed tomography (PET/CT) according to the 5-point Deauville score.
|
|
249
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0013 HON-20-0144-bib-0014">
|
|
250
|
+
<sup>13,14</sup>
|
|
251
|
+
</xref> The first post-treatment PET/CT scan was performed after 4–6 cycles of treatment. Subsequent frequencies of PET/CT scan were determined by the attending physicians. Metabolic complete response (mCR) required a Deauville score of ≤ 3. For patients whose lymphoma showed Reed-Sternberg cells positive for Epstein Barr virus (EBV) encoded early RNA (EBER) on
|
|
252
|
+
<italic>in</italic>-
|
|
253
|
+
<italic>situ</italic> hybridization (ISH), plasma EBV DNA was quantified by quantitative polymerase chain reaction (Q-PCR) as a surrogate biomarker of lymphoma load.
|
|
254
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0015">
|
|
255
|
+
<sup>15</sup>
|
|
256
|
+
</xref> Briefly, plasma samples were collected during follow-up visits (usually at 4-weekly intervals). Cell-free plasma DNA was extracted, and EBV DNA was quantified with reference to a World Health Organization standard (NIBSC code: 09/260) as reported.
|
|
257
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0015">
|
|
258
|
+
<sup>15</sup>
|
|
259
|
+
</xref> Complete molecular response required undetectable plasma EBV DNA on ≥ 2 consecutive occasions.
|
|
260
|
+
</p>
|
|
261
|
+
</sec>
|
|
262
|
+
<sec>
|
|
263
|
+
<title>Survivals</title>
|
|
264
|
+
<p>Overall-survival (OS) was defined as time from initiation of treatment to last follow-up or death from all causes. Progression-free-survival (PFS) was defined as time from initiation of treatment to the date of disease progression, relapse, last follow-up or death from all cause. Survivals were analyzed by the Kaplan-Meier method.</p>
|
|
265
|
+
</sec>
|
|
266
|
+
</sec>
|
|
267
|
+
<sec sec-type="results">
|
|
268
|
+
<title>RESULTS</title>
|
|
269
|
+
<sec sec-type="subjects">
|
|
270
|
+
<title>Patients</title>
|
|
271
|
+
<p>In study period, 17 patients with relapsed/refractory cHL were treated with low-dose anti-PD1 antibodies pembrolizumab (
|
|
272
|
+
<italic>N</italic> = 11) (
|
|
273
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0001">Table 1</xref>) and nivolumab (
|
|
274
|
+
<italic>N</italic> = 6) (
|
|
275
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0002">Table 2</xref>). The two cohorts contained similar patients (
|
|
276
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0003">Table 3</xref>). Preliminary findings of five patients had been described;
|
|
277
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0009 HON-20-0144-bib-0010 HON-20-0144-bib-0011 HON-20-0144-bib-0016 HON-20-0144-bib-0017">
|
|
278
|
+
<sup>9–11,16,17</sup>
|
|
279
|
+
</xref> with data of their extended follow-up presented here.
|
|
280
|
+
</p>
|
|
281
|
+
<table-wrap id="HON-20-0144-tbl-0001" position="float">
|
|
282
|
+
<label>TABLE 1</label>
|
|
283
|
+
<caption>
|
|
284
|
+
<title>Eleven patients with relapsed/refractory Hodgkin lymphoma treated with low-dose pembrolizumab</title>
|
|
285
|
+
</caption>
|
|
286
|
+
<table frame="hsides" rules="groups">
|
|
287
|
+
<col width="3%" />
|
|
288
|
+
<col width="4.19%" />
|
|
289
|
+
<col width="2.36%" />
|
|
290
|
+
<col width="1.18%" />
|
|
291
|
+
<col width="1.77%" />
|
|
292
|
+
<col width="23.68%" />
|
|
293
|
+
<col width="6.51%" />
|
|
294
|
+
<col width="3.55%" />
|
|
295
|
+
<col width="1.77%" />
|
|
296
|
+
<col width="10.06%" />
|
|
297
|
+
<col width="4.14%" />
|
|
298
|
+
<col width="19.53%" />
|
|
299
|
+
<col width="18.26%" />
|
|
300
|
+
<thead>
|
|
301
|
+
<tr>
|
|
302
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
303
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
304
|
+
<th colspan="2" valign="top" align="center" scope="colgroup" style="border-top: solid 0.50pt">
|
|
305
|
+
<bold>Stage</bold>
|
|
306
|
+
</th>
|
|
307
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
308
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
309
|
+
<th colspan="2" valign="top" align="center" scope="colgroup" style="border-top: solid 0.50pt">
|
|
310
|
+
<bold>Best response</bold>
|
|
311
|
+
</th>
|
|
312
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
313
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
314
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
315
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
316
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
317
|
+
</tr>
|
|
318
|
+
<tr>
|
|
319
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
320
|
+
<bold>Case</bold>
|
|
321
|
+
</th>
|
|
322
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
323
|
+
<bold>Sex/age</bold>
|
|
324
|
+
</th>
|
|
325
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
326
|
+
<bold>Dx</bold>
|
|
327
|
+
</th>
|
|
328
|
+
<th colspan="2" valign="top" align="left" scope="colgroup" style="border-bottom: solid 0.50pt">
|
|
329
|
+
<bold>CPI</bold>
|
|
330
|
+
</th>
|
|
331
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
332
|
+
<bold>Previous regimens (number of cycles)</bold>
|
|
333
|
+
</th>
|
|
334
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
335
|
+
<bold>Response</bold>
|
|
336
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0001">
|
|
337
|
+
<sup>1</sup>
|
|
338
|
+
</xref>
|
|
339
|
+
</th>
|
|
340
|
+
<th colspan="2" valign="top" align="left" scope="colgroup" style="border-bottom: solid 0.50pt">
|
|
341
|
+
<bold>Dose</bold>
|
|
342
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0002">
|
|
343
|
+
<sup>2</sup>
|
|
344
|
+
</xref>
|
|
345
|
+
</th>
|
|
346
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
347
|
+
<bold>irAE (grade)</bold>
|
|
348
|
+
</th>
|
|
349
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
350
|
+
<bold>Cycles</bold>
|
|
351
|
+
</th>
|
|
352
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
353
|
+
<bold>Clinical course</bold>
|
|
354
|
+
</th>
|
|
355
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
356
|
+
<bold>Status / survivals (time)</bold>
|
|
357
|
+
</th>
|
|
358
|
+
</tr>
|
|
359
|
+
</thead>
|
|
360
|
+
<tbody>
|
|
361
|
+
<tr>
|
|
362
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" scope="col" />
|
|
363
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
364
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
365
|
+
<td colspan="2" valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
366
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
367
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
368
|
+
<td colspan="2" valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
369
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
370
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
371
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
372
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
373
|
+
</tr>
|
|
374
|
+
<tr>
|
|
375
|
+
<td valign="top" align="left" scope="row">P1</td>
|
|
376
|
+
<td valign="top" align="left">M/20</td>
|
|
377
|
+
<td valign="top" align="left">II</td>
|
|
378
|
+
<td colspan="2" valign="top" align="left">IV</td>
|
|
379
|
+
<td valign="top" align="left">ABVD (6), DHAP (2), Benda (6), BV (6), AHSCT, BV + Gem (3)</td>
|
|
380
|
+
<td valign="top" align="left">CR</td>
|
|
381
|
+
<td colspan="2" valign="top" align="left">300 mg</td>
|
|
382
|
+
<td valign="top" align="left">nil</td>
|
|
383
|
+
<td valign="top" align="left">32</td>
|
|
384
|
+
<td valign="top" align="left">completed 2 years of treatment
|
|
385
|
+
<break />relapsed 11 months afterwards
|
|
386
|
+
</td>
|
|
387
|
+
<td valign="top" align="left">CR (33 m); PFS (35 m)
|
|
388
|
+
<break />Relapsed
|
|
389
|
+
</td>
|
|
390
|
+
</tr>
|
|
391
|
+
<tr>
|
|
392
|
+
<td valign="top" align="left" scope="row" />
|
|
393
|
+
<td valign="top" align="left">M/24</td>
|
|
394
|
+
<td valign="top" align="left" />
|
|
395
|
+
<td colspan="2" valign="top" align="left" />
|
|
396
|
+
<td valign="top" align="left">Pembrolizumab (32)</td>
|
|
397
|
+
<td valign="top" align="left">CR</td>
|
|
398
|
+
<td colspan="2" valign="top" align="left">1500 mg</td>
|
|
399
|
+
<td valign="top" align="left">nil</td>
|
|
400
|
+
<td valign="top" align="left">25</td>
|
|
401
|
+
<td valign="top" align="left">ongoing CR</td>
|
|
402
|
+
<td valign="top" align="left">CR (11 m); PFS (22 m); OS (57 m)</td>
|
|
403
|
+
</tr>
|
|
404
|
+
<tr>
|
|
405
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">P2</td>
|
|
406
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">F/38</td>
|
|
407
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">IV</td>
|
|
408
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">III</td>
|
|
409
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (3), BEACOPP (4), BV + Gem (4)</td>
|
|
410
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR</td>
|
|
411
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">800 mg</td>
|
|
412
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">colitis (1)</td>
|
|
413
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">17</td>
|
|
414
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">gave birth to a daughter 33 m after stopping pembrolizumab, ongoing CR</td>
|
|
415
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR (42 m); PFS (49 m), OS (49 m)</td>
|
|
416
|
+
</tr>
|
|
417
|
+
<tr>
|
|
418
|
+
<td valign="top" align="left" scope="row">P3</td>
|
|
419
|
+
<td valign="top" align="left">M/32</td>
|
|
420
|
+
<td valign="top" align="left">IV</td>
|
|
421
|
+
<td colspan="2" valign="top" align="justify">IV</td>
|
|
422
|
+
<td valign="top" align="justify">ABVD (6), DHAP (3), BV (3)</td>
|
|
423
|
+
<td valign="top" align="left">CR</td>
|
|
424
|
+
<td colspan="2" valign="top" align="left">390 mg
|
|
425
|
+
<sup>3</sup>
|
|
426
|
+
</td>
|
|
427
|
+
<td valign="top" align="left">eczema(1)
|
|
428
|
+
<break />hypothyroidism (2)
|
|
429
|
+
</td>
|
|
430
|
+
<td valign="top" align="left">36</td>
|
|
431
|
+
<td valign="top" align="left">Ongoing CR</td>
|
|
432
|
+
<td valign="top" align="left">CR (46 m); PFS (48 m); OS (48 m)</td>
|
|
433
|
+
</tr>
|
|
434
|
+
<tr>
|
|
435
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">P4</td>
|
|
436
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">F/39</td>
|
|
437
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">III</td>
|
|
438
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">IV</td>
|
|
439
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (4), DHAP (2), BV (3), AHSCT</td>
|
|
440
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR</td>
|
|
441
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">400 mg</td>
|
|
442
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">nil</td>
|
|
443
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">25</td>
|
|
444
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR for 24 m, then PD;
|
|
445
|
+
<break />switched to nivolumab
|
|
446
|
+
</td>
|
|
447
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PFS (26 m); OS (39 m)
|
|
448
|
+
<break />SD (8 m)
|
|
449
|
+
</td>
|
|
450
|
+
</tr>
|
|
451
|
+
<tr>
|
|
452
|
+
<td valign="top" align="left" scope="row">P5</td>
|
|
453
|
+
<td valign="top" align="left">M/71</td>
|
|
454
|
+
<td valign="top" align="left">IV</td>
|
|
455
|
+
<td colspan="2" valign="top" align="left">IV</td>
|
|
456
|
+
<td valign="top" align="left">BV + Benda (6)</td>
|
|
457
|
+
<td valign="top" align="left">CR</td>
|
|
458
|
+
<td colspan="2" valign="top" align="left">300 mg</td>
|
|
459
|
+
<td valign="top" align="left">nil</td>
|
|
460
|
+
<td valign="top" align="left">33</td>
|
|
461
|
+
<td valign="top" align="left">Ongoing CR</td>
|
|
462
|
+
<td valign="top" align="left">CR (29 m); PFS (32 m); OS (32 m)</td>
|
|
463
|
+
</tr>
|
|
464
|
+
<tr>
|
|
465
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">P6</td>
|
|
466
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">F/47</td>
|
|
467
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">II</td>
|
|
468
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">II</td>
|
|
469
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (2), BEACOPP (2), DHAP (2)</td>
|
|
470
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR</td>
|
|
471
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">300 mg</td>
|
|
472
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">nil</td>
|
|
473
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">17</td>
|
|
474
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR for 11 m, then PD;
|
|
475
|
+
<break />No response to BV and GDP
|
|
476
|
+
</td>
|
|
477
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR (11 m); PFS (14 m); OS (22 m)
|
|
478
|
+
<break />Died of disease
|
|
479
|
+
</td>
|
|
480
|
+
</tr>
|
|
481
|
+
<tr>
|
|
482
|
+
<td valign="top" align="left" scope="row">P7</td>
|
|
483
|
+
<td valign="top" align="left">F/26</td>
|
|
484
|
+
<td valign="top" align="left">III</td>
|
|
485
|
+
<td colspan="2" valign="top" align="left">III</td>
|
|
486
|
+
<td valign="top" align="left">ABVD (6), GDP (2), BV (7)</td>
|
|
487
|
+
<td valign="top" align="left">CR</td>
|
|
488
|
+
<td colspan="2" valign="top" align="left">400 mg</td>
|
|
489
|
+
<td valign="top" align="left">nil</td>
|
|
490
|
+
<td valign="top" align="left">34</td>
|
|
491
|
+
<td valign="top" align="left">CR for 32 m; then relapsed</td>
|
|
492
|
+
<td valign="top" align="left">CR (32 m); PFS (35m)</td>
|
|
493
|
+
</tr>
|
|
494
|
+
<tr>
|
|
495
|
+
<td valign="top" align="left" scope="row" />
|
|
496
|
+
<td valign="top" align="left">F/29</td>
|
|
497
|
+
<td valign="top" align="left">III</td>
|
|
498
|
+
<td colspan="2" valign="top" align="left" />
|
|
499
|
+
<td valign="top" align="left">Pembrolizumab (34)</td>
|
|
500
|
+
<td valign="top" align="left">CR</td>
|
|
501
|
+
<td colspan="2" valign="top" align="left">200 mg</td>
|
|
502
|
+
<td valign="top" align="left">nil</td>
|
|
503
|
+
<td valign="top" align="left">10</td>
|
|
504
|
+
<td valign="top" align="left">CR after 2 cycles of Pem + BV
|
|
505
|
+
<break />Ongoing CR, still on BV + Pem
|
|
506
|
+
</td>
|
|
507
|
+
<td valign="top" align="left">CR (4 m); PFS (7 m); OS (41 m)</td>
|
|
508
|
+
</tr>
|
|
509
|
+
<tr>
|
|
510
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">P8</td>
|
|
511
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">M/19</td>
|
|
512
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">IV</td>
|
|
513
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">IV</td>
|
|
514
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (4), BEACOPP (2), BV + Gem (3)</td>
|
|
515
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR</td>
|
|
516
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">400 mg</td>
|
|
517
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">urticaria (1)</td>
|
|
518
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">10</td>
|
|
519
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR for 6 m</td>
|
|
520
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR (6 m); PFS (9 m); OS (9 m)</td>
|
|
521
|
+
</tr>
|
|
522
|
+
<tr>
|
|
523
|
+
<td valign="top" align="left" scope="row">P9</td>
|
|
524
|
+
<td valign="top" align="justify">M/35</td>
|
|
525
|
+
<td valign="top" align="justify">III</td>
|
|
526
|
+
<td colspan="2" valign="top" align="justify">IV</td>
|
|
527
|
+
<td valign="top" align="justify">BV(8)</td>
|
|
528
|
+
<td valign="top" align="left">CR</td>
|
|
529
|
+
<td colspan="2" valign="top" align="left">600 mg</td>
|
|
530
|
+
<td valign="top" align="left">nil</td>
|
|
531
|
+
<td valign="top" align="left">8</td>
|
|
532
|
+
<td valign="top" align="left">Changed to nivolumab because of cost concerns</td>
|
|
533
|
+
<td valign="top" align="left">CR (13 m); PFS (19 m); OS (19 m)</td>
|
|
534
|
+
</tr>
|
|
535
|
+
<tr>
|
|
536
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">P10</td>
|
|
537
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">M/34</td>
|
|
538
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">IV</td>
|
|
539
|
+
<td colspan="2" valign="top" align="justify" style="background-color:rgb(191,191,191)">IV</td>
|
|
540
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">ABVD (2), AAVD (4)</td>
|
|
541
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR</td>
|
|
542
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">300 mg</td>
|
|
543
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">nil</td>
|
|
544
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">24</td>
|
|
545
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">In PR for 12 m</td>
|
|
546
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">PR (12 m); PFS (16 m); OS (16 m)</td>
|
|
547
|
+
</tr>
|
|
548
|
+
<tr>
|
|
549
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt" scope="row">P11</td>
|
|
550
|
+
<td valign="top" align="justify" style="border-bottom: solid 0.50pt">F/23</td>
|
|
551
|
+
<td valign="top" align="justify" style="border-bottom: solid 0.50pt">IV</td>
|
|
552
|
+
<td colspan="2" valign="top" align="justify" style="border-bottom: solid 0.50pt">IV</td>
|
|
553
|
+
<td valign="top" align="justify" style="border-bottom: solid 0.50pt">AAVD (6), GDP (3)</td>
|
|
554
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">CR</td>
|
|
555
|
+
<td colspan="2" valign="top" align="left" style="border-bottom: solid 0.50pt">600 mg</td>
|
|
556
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">nil</td>
|
|
557
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">16</td>
|
|
558
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">Ongoing CR</td>
|
|
559
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">CR (10 m); PFS (14 m); OS (14 m)</td>
|
|
560
|
+
</tr>
|
|
561
|
+
</tbody>
|
|
562
|
+
</table>
|
|
563
|
+
<table-wrap-foot>
|
|
564
|
+
<p>Dx: stage at diagnosis; CPI: stage at the start of checkpoint inhibitor; 1: response determined by positron emission tomography computed tomography; 2: total dose at the time of best response; 3: dose of pembrolizumab at 2 mg/kg and hence 130 mg per cycle; CR: complete response; PR: partial response; PD: progressive disease; SD: stable disease; ABVD: adriamycin, bleomcyin, vinblastine, dacarbazine; DHAP: cytarabine, cisplatinum, dexamethasone; Benda: bendamustine; BV: brentuximab vedotin; AHSCT: autologous hematopoietic stem cell transplantation; Gem: gemcitabine; BEACOPP: bleomycin, etoposide, adriamycin, cyclophosphamide, vincristine, procarbazine, prednisolone; GDP: gemcitabine, cisplatinum, dexamethasone; AAVD: brentuximab, adriamycin, vinblastine, dacarbazine; pem: pembrolizumab; CR: complete response; PR: partial response; m: months;</p>
|
|
565
|
+
</table-wrap-foot>
|
|
566
|
+
</table-wrap>
|
|
567
|
+
<table-wrap id="HON-20-0144-tbl-0002" position="float">
|
|
568
|
+
<label>TABLE 2</label>
|
|
569
|
+
<caption>
|
|
570
|
+
<title>Six patients with relapsed/refractory Hodgkin lymphoma treated with low-dose nivolumab</title>
|
|
571
|
+
</caption>
|
|
572
|
+
<table frame="hsides" rules="groups">
|
|
573
|
+
<col width="3.22%" />
|
|
574
|
+
<col width="5.03%" />
|
|
575
|
+
<col width="3.14%" />
|
|
576
|
+
<col width="1.25%" />
|
|
577
|
+
<col width="1.88%" />
|
|
578
|
+
<col width="27.69%" />
|
|
579
|
+
<col width="6.92%" />
|
|
580
|
+
<col width="4.37%" />
|
|
581
|
+
<col width="1.92%" />
|
|
582
|
+
<col width="13.21%" />
|
|
583
|
+
<col width="5.66%" />
|
|
584
|
+
<col width="10.07%" />
|
|
585
|
+
<col width="15.64%" />
|
|
586
|
+
<thead>
|
|
587
|
+
<tr>
|
|
588
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
589
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
590
|
+
<th colspan="2" valign="top" align="center" scope="colgroup" style="border-top: solid 0.50pt">
|
|
591
|
+
<bold>Stage</bold>
|
|
592
|
+
</th>
|
|
593
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
594
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
595
|
+
<th colspan="2" valign="top" align="center" scope="colgroup" style="border-top: solid 0.50pt">
|
|
596
|
+
<bold>Best response</bold>
|
|
597
|
+
</th>
|
|
598
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
599
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
600
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
601
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
602
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt" />
|
|
603
|
+
</tr>
|
|
604
|
+
<tr>
|
|
605
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
606
|
+
<bold>Case</bold>
|
|
607
|
+
</th>
|
|
608
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
609
|
+
<bold>Sex/age</bold>
|
|
610
|
+
</th>
|
|
611
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
612
|
+
<bold>Dx</bold>
|
|
613
|
+
</th>
|
|
614
|
+
<th colspan="2" valign="top" align="left" scope="colgroup" style="border-bottom: solid 0.50pt">
|
|
615
|
+
<bold>CPI</bold>
|
|
616
|
+
</th>
|
|
617
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
618
|
+
<bold>Previous regimens (number of cycles)</bold>
|
|
619
|
+
</th>
|
|
620
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
621
|
+
<bold>Response</bold>
|
|
622
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0001">
|
|
623
|
+
<sup>1</sup>
|
|
624
|
+
</xref>
|
|
625
|
+
</th>
|
|
626
|
+
<th colspan="2" valign="top" align="left" scope="colgroup" style="border-bottom: solid 0.50pt">
|
|
627
|
+
<bold>dose</bold>
|
|
628
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0002">
|
|
629
|
+
<sup>2</sup>
|
|
630
|
+
</xref>
|
|
631
|
+
</th>
|
|
632
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
633
|
+
<bold>irAE (grade)</bold>
|
|
634
|
+
</th>
|
|
635
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
636
|
+
<bold>Cycles</bold>
|
|
637
|
+
</th>
|
|
638
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
639
|
+
<bold>Clinical course</bold>
|
|
640
|
+
</th>
|
|
641
|
+
<th valign="top" align="left" scope="col" style="border-bottom: solid 0.50pt">
|
|
642
|
+
<bold>Status / survivals (time)</bold>
|
|
643
|
+
</th>
|
|
644
|
+
</tr>
|
|
645
|
+
</thead>
|
|
646
|
+
<tbody>
|
|
647
|
+
<tr>
|
|
648
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" scope="col" />
|
|
649
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
650
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
651
|
+
<td colspan="2" valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
652
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
653
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
654
|
+
<td colspan="2" valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
655
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
656
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
657
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
658
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" />
|
|
659
|
+
</tr>
|
|
660
|
+
<tr>
|
|
661
|
+
<td valign="top" align="left" scope="row">N1</td>
|
|
662
|
+
<td valign="top" align="left">F/44</td>
|
|
663
|
+
<td valign="top" align="left">II</td>
|
|
664
|
+
<td colspan="2" valign="top" align="left">II</td>
|
|
665
|
+
<td valign="top" align="left">ABVD (6), BV + Benda (1)</td>
|
|
666
|
+
<td valign="top" align="justify">CR</td>
|
|
667
|
+
<td colspan="2" valign="top" align="justify">160 mg</td>
|
|
668
|
+
<td valign="top" align="justify">eczema (1)
|
|
669
|
+
<break />hypocortisolism (1)
|
|
670
|
+
</td>
|
|
671
|
+
<td valign="top" align="left">52</td>
|
|
672
|
+
<td valign="top" align="left">Ongoing CR</td>
|
|
673
|
+
<td valign="top" align="left">CR (28 m); PFS (30 m);
|
|
674
|
+
<break />OS (30 m)
|
|
675
|
+
</td>
|
|
676
|
+
</tr>
|
|
677
|
+
<tr>
|
|
678
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">N2</td>
|
|
679
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">M/36</td>
|
|
680
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">III</td>
|
|
681
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">III</td>
|
|
682
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (8), DHAP (3), AHSCT</td>
|
|
683
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">CR</td>
|
|
684
|
+
<td colspan="2" valign="top" align="justify" style="background-color:rgb(191,191,191)">160 mg</td>
|
|
685
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">ITP (4)
|
|
686
|
+
<break />Hypophysitis (2) with
|
|
687
|
+
<break />diabetes insipidus
|
|
688
|
+
</td>
|
|
689
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">52</td>
|
|
690
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">CR for 30 m,
|
|
691
|
+
<break />then relapsed
|
|
692
|
+
</td>
|
|
693
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR (30 m); PFS (33 m)</td>
|
|
694
|
+
</tr>
|
|
695
|
+
<tr>
|
|
696
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row" />
|
|
697
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" />
|
|
698
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" />
|
|
699
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)" />
|
|
700
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">Nivolumab</td>
|
|
701
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">CR</td>
|
|
702
|
+
<td colspan="2" valign="top" align="justify" style="background-color:rgb(191,191,191)">360 mg</td>
|
|
703
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">Hypophysitis (2)</td>
|
|
704
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">10</td>
|
|
705
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">Ongoing CR</td>
|
|
706
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR (1 m); PFS (5 m);
|
|
707
|
+
<break />OS (38 m)
|
|
708
|
+
</td>
|
|
709
|
+
</tr>
|
|
710
|
+
<tr>
|
|
711
|
+
<td valign="top" align="left" scope="row">N3</td>
|
|
712
|
+
<td valign="top" align="left">F/64</td>
|
|
713
|
+
<td valign="top" align="left">IV</td>
|
|
714
|
+
<td colspan="2" valign="top" align="left">I</td>
|
|
715
|
+
<td valign="top" align="left">ABVD (6), DHAP (2), COPP (2), Allo-HSCT, GDP (6), Benda (4), radiotherapy</td>
|
|
716
|
+
<td valign="top" align="justify">CR</td>
|
|
717
|
+
<td colspan="2" valign="top" align="justify">160 mg</td>
|
|
718
|
+
<td valign="top" align="justify">Nil</td>
|
|
719
|
+
<td valign="top" align="left">23</td>
|
|
720
|
+
<td valign="top" align="justify">Ongoing CR</td>
|
|
721
|
+
<td valign="top" align="left">CR (20 m); PFS (22 m);
|
|
722
|
+
<break />OS (22 m)
|
|
723
|
+
</td>
|
|
724
|
+
</tr>
|
|
725
|
+
<tr>
|
|
726
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)" scope="row">N4</td>
|
|
727
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">F/34</td>
|
|
728
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">IV</td>
|
|
729
|
+
<td colspan="2" valign="top" align="left" style="background-color:rgb(191,191,191)">III</td>
|
|
730
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">ABVD (6), BV (2)</td>
|
|
731
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">CR</td>
|
|
732
|
+
<td colspan="2" valign="top" align="justify" style="background-color:rgb(191,191,191)">160 mg</td>
|
|
733
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">Thyroiditis (1)
|
|
734
|
+
<break />Hypocortisolism (1)
|
|
735
|
+
<break />Rash (1)
|
|
736
|
+
</td>
|
|
737
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">23</td>
|
|
738
|
+
<td valign="top" align="justify" style="background-color:rgb(191,191,191)">Ongoing CR</td>
|
|
739
|
+
<td valign="top" align="left" style="background-color:rgb(191,191,191)">CR (8 m); PFS (10 m);
|
|
740
|
+
<break />OS (10 m)
|
|
741
|
+
</td>
|
|
742
|
+
</tr>
|
|
743
|
+
<tr>
|
|
744
|
+
<td valign="top" align="left" scope="row">N5</td>
|
|
745
|
+
<td valign="top" align="left">M/37</td>
|
|
746
|
+
<td valign="top" align="left">IV</td>
|
|
747
|
+
<td colspan="2" valign="top" align="left">IV</td>
|
|
748
|
+
<td valign="top" align="left">ABVD (8), DHAP (2), GDP(3), BV (3), Allo-HSCT</td>
|
|
749
|
+
<td valign="top" align="justify">PR</td>
|
|
750
|
+
<td colspan="2" valign="top" align="justify">240mg</td>
|
|
751
|
+
<td valign="top" align="justify">Nil</td>
|
|
752
|
+
<td valign="top" align="left">15</td>
|
|
753
|
+
<td valign="top" align="justify">Ongoing PR</td>
|
|
754
|
+
<td valign="top" align="left">PR (4 m); PFS (6 m); OS (6 m)</td>
|
|
755
|
+
</tr>
|
|
756
|
+
<tr>
|
|
757
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)" scope="row">N6</td>
|
|
758
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">M/57</td>
|
|
759
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">II</td>
|
|
760
|
+
<td colspan="2" valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">IV</td>
|
|
761
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">RT, ABVD (2)</td>
|
|
762
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">IR</td>
|
|
763
|
+
<td colspan="2" valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">360 mg</td>
|
|
764
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">Hypothyroidism (2)</td>
|
|
765
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">20</td>
|
|
766
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">Ongoing IR</td>
|
|
767
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt; background-color:rgb(191,191,191)">IR (1 m); PFS (10 m);
|
|
768
|
+
<break />OS (10 m)
|
|
769
|
+
</td>
|
|
770
|
+
</tr>
|
|
771
|
+
</tbody>
|
|
772
|
+
</table>
|
|
773
|
+
<table-wrap-foot>
|
|
774
|
+
<p>Dx: stage at diagnosis; CPI: stage at the start of checkpoint inhibitor; 1: response determined by positron emission tomography computed tomography; 2: total dose at the time of best response; CR: complete response; PR: partial response; PD: progressive disease; SD: stable disease; IR: indeterminate response; ABVD: adriamycin, bleomcyin, vinblastine, dacarbazine; DHAP: cytarabine, cisplatinum, dexamethasone; COPP: cyclophosphamide, vincristine, procarbazine, prednisolone; allo-HSCT: allogeneic hematopoietic stem cell transplantation; Benda: bendamustine; BV: brentuximab vedotin; RT: radiotherapy; AHSCT: autologous hematopoietic stem cell transplantation; Gem: gemcitabine; BEACOPP: bleomycin, etoposide, adriamycin, cyclophosphamide, vincristine, procarbazine, prednisolone; GDP: gemcitabine, cisplatinum, dexamethasone</p>
|
|
775
|
+
</table-wrap-foot>
|
|
776
|
+
</table-wrap>
|
|
777
|
+
<table-wrap id="HON-20-0144-tbl-0003" position="float">
|
|
778
|
+
<label>TABLE 3</label>
|
|
779
|
+
<caption>
|
|
780
|
+
<title>Clinicopathologic features and treatment outcome of patients with relapsed/refractory classical Hodgkin lymphoma treated by pembrolizumab and nivolumab</title>
|
|
781
|
+
</caption>
|
|
782
|
+
<table frame="hsides" rules="groups">
|
|
783
|
+
<col width="64.16%" />
|
|
784
|
+
<col width="18.86%" />
|
|
785
|
+
<col width="16.98%" />
|
|
786
|
+
<thead>
|
|
787
|
+
<tr>
|
|
788
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt">
|
|
789
|
+
<bold>Clinicopathologic features and outcome</bold>
|
|
790
|
+
</th>
|
|
791
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt">
|
|
792
|
+
<bold>Pembrolizumab</bold>
|
|
793
|
+
</th>
|
|
794
|
+
<th valign="top" align="left" scope="col" style="border-top: solid 0.50pt">
|
|
795
|
+
<bold>Nivolumab</bold>
|
|
796
|
+
</th>
|
|
797
|
+
</tr>
|
|
798
|
+
</thead>
|
|
799
|
+
<tbody>
|
|
800
|
+
<tr>
|
|
801
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt" scope="col" />
|
|
802
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt" />
|
|
803
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt" />
|
|
804
|
+
</tr>
|
|
805
|
+
<tr>
|
|
806
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt" scope="row">Number</td>
|
|
807
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt">11</td>
|
|
808
|
+
<td valign="top" align="left" style="border-top: solid 0.50pt">6</td>
|
|
809
|
+
</tr>
|
|
810
|
+
<tr>
|
|
811
|
+
<td valign="top" align="left" scope="row">Gender (male: female)</td>
|
|
812
|
+
<td valign="top" align="left">6: 5</td>
|
|
813
|
+
<td valign="top" align="left">3: 3</td>
|
|
814
|
+
</tr>
|
|
815
|
+
<tr>
|
|
816
|
+
<td valign="top" align="left" scope="row">Age, median (range) in years</td>
|
|
817
|
+
<td valign="top" align="left">34 (20–71)</td>
|
|
818
|
+
<td valign="top" align="left">40.5 (34–57)</td>
|
|
819
|
+
</tr>
|
|
820
|
+
<tr>
|
|
821
|
+
<td valign="top" align="left" scope="col">
|
|
822
|
+
<underline>Histology</underline>
|
|
823
|
+
</td>
|
|
824
|
+
<td valign="top" align="left" />
|
|
825
|
+
<td valign="top" align="left" />
|
|
826
|
+
</tr>
|
|
827
|
+
<tr>
|
|
828
|
+
<td valign="top" align="left" scope="row">Nodular sclerosing</td>
|
|
829
|
+
<td valign="top" align="left">9 (82%)</td>
|
|
830
|
+
<td valign="top" align="left">4 (67%)</td>
|
|
831
|
+
</tr>
|
|
832
|
+
<tr>
|
|
833
|
+
<td valign="top" align="left" scope="row">Mixed cellularity</td>
|
|
834
|
+
<td valign="top" align="left">1 (9%)</td>
|
|
835
|
+
<td valign="top" align="left">1 (17%)</td>
|
|
836
|
+
</tr>
|
|
837
|
+
<tr>
|
|
838
|
+
<td valign="top" align="left" scope="row">Lymphocyte-rich</td>
|
|
839
|
+
<td valign="top" align="left">0</td>
|
|
840
|
+
<td valign="top" align="left">1 (17%)</td>
|
|
841
|
+
</tr>
|
|
842
|
+
<tr>
|
|
843
|
+
<td valign="top" align="left" scope="row">Not specified</td>
|
|
844
|
+
<td valign="top" align="left">1 (9%)</td>
|
|
845
|
+
<td valign="top" align="left">0</td>
|
|
846
|
+
</tr>
|
|
847
|
+
<tr>
|
|
848
|
+
<td valign="top" align="left" scope="col">
|
|
849
|
+
<underline>At initial diagnosis</underline>
|
|
850
|
+
</td>
|
|
851
|
+
<td valign="top" align="left" />
|
|
852
|
+
<td valign="top" align="left" />
|
|
853
|
+
</tr>
|
|
854
|
+
<tr>
|
|
855
|
+
<td valign="top" align="left" scope="row">Stage I/II</td>
|
|
856
|
+
<td valign="top" align="left">2 (81%)</td>
|
|
857
|
+
<td valign="top" align="left">2 (33%)</td>
|
|
858
|
+
</tr>
|
|
859
|
+
<tr>
|
|
860
|
+
<td valign="top" align="left" scope="row">Stage III/IV</td>
|
|
861
|
+
<td valign="top" align="left">9 (82%)</td>
|
|
862
|
+
<td valign="top" align="left">4 (67%)</td>
|
|
863
|
+
</tr>
|
|
864
|
+
<tr>
|
|
865
|
+
<td valign="top" align="left" scope="row">B symptoms</td>
|
|
866
|
+
<td valign="top" align="left">7 (64%)</td>
|
|
867
|
+
<td valign="top" align="left">0</td>
|
|
868
|
+
</tr>
|
|
869
|
+
<tr>
|
|
870
|
+
<td valign="top" align="left" scope="row">Extra-nodal involvement</td>
|
|
871
|
+
<td valign="top" align="left">4 (36%)</td>
|
|
872
|
+
<td valign="top" align="left">3 (50%)</td>
|
|
873
|
+
</tr>
|
|
874
|
+
<tr>
|
|
875
|
+
<td valign="top" align="left" scope="row">Frontline therapy with ABVD</td>
|
|
876
|
+
<td valign="top" align="left">8 (72%)</td>
|
|
877
|
+
<td valign="top" align="left">5 (83%)</td>
|
|
878
|
+
</tr>
|
|
879
|
+
<tr>
|
|
880
|
+
<td valign="top" align="left" scope="row">Refractoriness to frontline therapy</td>
|
|
881
|
+
<td valign="top" align="left">8 (73%)</td>
|
|
882
|
+
<td valign="top" align="left">2 (33%)</td>
|
|
883
|
+
</tr>
|
|
884
|
+
<tr>
|
|
885
|
+
<td valign="top" align="left" scope="row">PET2-adapted approach</td>
|
|
886
|
+
<td valign="top" align="left">3 (27%)</td>
|
|
887
|
+
<td valign="top" align="left">1 (17%)</td>
|
|
888
|
+
</tr>
|
|
889
|
+
<tr>
|
|
890
|
+
<td valign="top" align="left" scope="col">
|
|
891
|
+
<underline>At start of checkpoint inhibitor</underline>
|
|
892
|
+
</td>
|
|
893
|
+
<td valign="top" align="left" />
|
|
894
|
+
<td valign="top" align="left" />
|
|
895
|
+
</tr>
|
|
896
|
+
<tr>
|
|
897
|
+
<td valign="top" align="left" scope="row">Stage I/II</td>
|
|
898
|
+
<td valign="top" align="left">1 (9%)</td>
|
|
899
|
+
<td valign="top" align="left">2 (33%)</td>
|
|
900
|
+
</tr>
|
|
901
|
+
<tr>
|
|
902
|
+
<td valign="top" align="left" scope="row">Stage III/IV</td>
|
|
903
|
+
<td valign="top" align="left">10 (91%)</td>
|
|
904
|
+
<td valign="top" align="left">4 (67%)</td>
|
|
905
|
+
</tr>
|
|
906
|
+
<tr>
|
|
907
|
+
<td valign="top" align="left" scope="row">B symptoms</td>
|
|
908
|
+
<td valign="top" align="left">6 (55%)</td>
|
|
909
|
+
<td valign="top" align="left">0</td>
|
|
910
|
+
</tr>
|
|
911
|
+
<tr>
|
|
912
|
+
<td valign="top" align="left" scope="row">Extra-nodal involvement</td>
|
|
913
|
+
<td valign="top" align="left">8 (73%)</td>
|
|
914
|
+
<td valign="top" align="left">2 (33%)</td>
|
|
915
|
+
</tr>
|
|
916
|
+
<tr>
|
|
917
|
+
<td valign="top" align="left" scope="row">Prior lines of regimens, median (range)</td>
|
|
918
|
+
<td valign="top" align="left">3 (1–6)</td>
|
|
919
|
+
<td valign="top" align="left">2.5 (2–7)</td>
|
|
920
|
+
</tr>
|
|
921
|
+
<tr>
|
|
922
|
+
<td valign="top" align="left" scope="row">Prior exposure to brentuximab vedotin</td>
|
|
923
|
+
<td valign="top" align="left">10 (91%)</td>
|
|
924
|
+
<td valign="top" align="left">3 (50%)</td>
|
|
925
|
+
</tr>
|
|
926
|
+
<tr>
|
|
927
|
+
<td valign="top" align="left" scope="row">Prior autologous HSCT</td>
|
|
928
|
+
<td valign="top" align="left">2 (18%)</td>
|
|
929
|
+
<td valign="top" align="left">1 (17%)</td>
|
|
930
|
+
</tr>
|
|
931
|
+
<tr>
|
|
932
|
+
<td valign="top" align="left" scope="row">Prior allogeneic HSCT</td>
|
|
933
|
+
<td valign="top" align="left">0</td>
|
|
934
|
+
<td valign="top" align="left">2 (34%)</td>
|
|
935
|
+
</tr>
|
|
936
|
+
<tr>
|
|
937
|
+
<td valign="top" align="left" scope="row">Refractoriness to last regimen</td>
|
|
938
|
+
<td valign="top" align="left">8 (73%)</td>
|
|
939
|
+
<td valign="top" align="left">3 (50%)</td>
|
|
940
|
+
</tr>
|
|
941
|
+
<tr>
|
|
942
|
+
<td valign="top" align="left" scope="row">Time from last regimen, median (range) in months</td>
|
|
943
|
+
<td valign="top" align="left">1 (1–30)</td>
|
|
944
|
+
<td valign="top" align="left">6.5 (1–59)</td>
|
|
945
|
+
</tr>
|
|
946
|
+
<tr>
|
|
947
|
+
<td valign="top" align="left" scope="row">Time from initial diagnosis, median, (range) in months</td>
|
|
948
|
+
<td valign="top" align="left">14 (5–72)</td>
|
|
949
|
+
<td valign="top" align="left">64 (12–118)</td>
|
|
950
|
+
</tr>
|
|
951
|
+
<tr>
|
|
952
|
+
<td valign="top" align="left" scope="col">
|
|
953
|
+
<underline>Best outcome to checkpoint inhibitor</underline>
|
|
954
|
+
</td>
|
|
955
|
+
<td valign="top" align="left" />
|
|
956
|
+
<td valign="top" align="left" />
|
|
957
|
+
</tr>
|
|
958
|
+
<tr>
|
|
959
|
+
<td valign="top" align="left" scope="row">Complete response</td>
|
|
960
|
+
<td valign="top" align="left">8 (73%)</td>
|
|
961
|
+
<td valign="top" align="left">4 (67%)</td>
|
|
962
|
+
</tr>
|
|
963
|
+
<tr>
|
|
964
|
+
<td valign="top" align="left" scope="row">Partial response</td>
|
|
965
|
+
<td valign="top" align="left">3 (27%)</td>
|
|
966
|
+
<td valign="top" align="left">1 (17%)</td>
|
|
967
|
+
</tr>
|
|
968
|
+
<tr>
|
|
969
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt" scope="row">Indeterminate response</td>
|
|
970
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">0</td>
|
|
971
|
+
<td valign="top" align="left" style="border-bottom: solid 0.50pt">1 (17%)</td>
|
|
972
|
+
</tr>
|
|
973
|
+
</tbody>
|
|
974
|
+
</table>
|
|
975
|
+
<table-wrap-foot>
|
|
976
|
+
<p>ABVD: adriamycin, bleomycin, vinblastine, dacarbazine; PET2-adpated approach: treatment approach based on positron emission tomography computed tomography data after two cycles of treatment; HSCT: hematopoietic stem cell transplantation</p>
|
|
977
|
+
</table-wrap-foot>
|
|
978
|
+
</table-wrap>
|
|
979
|
+
</sec>
|
|
980
|
+
<sec>
|
|
981
|
+
<title>Pembrolizumab cohort</title>
|
|
982
|
+
<p>Six men and five women at a median age of 34 (range: 19–71) years were treated. On presentation, nine patients had advanced (stage III/IV) disease, and two patients had early (stage II) disease. At relapsed/refractory disease, 10 patients had advanced disease. There was a median of 3 (range: 1–6) lines of prior therapy, including brentuximab vedotin (BV) in 10 patients (91%), and auto-HSCT in two patients (18%). Median time from last regimen to treatment was 1 (range: 1–30) months (
|
|
983
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0003">Table 3</xref>). Ten patients received 100 mg Q3W, whereas one case (patient P3) received 130 mg (at 2 mg/kg) Q3W.
|
|
984
|
+
</p>
|
|
985
|
+
</sec>
|
|
986
|
+
<sec>
|
|
987
|
+
<title>Response to pembrolizumab</title>
|
|
988
|
+
<p>The best radiologic response was mCR in eight patients (73%) (Deauville score: 1,
|
|
989
|
+
<italic>N</italic> = 3; 2,
|
|
990
|
+
<italic>N</italic> = 5; all with > 50% shrinkage of tumors), and partial response (PR) in three patients (27%) (
|
|
991
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0001">Figure 1 A–D</xref>), giving an overall response rate (ORR) of 100%. The median cumulative dose of pembrolizumab leading to best response was 400 mg (range: 300–800 mg).
|
|
992
|
+
</p>
|
|
993
|
+
<fig id="HON-20-0144-fig-0001" position="float" fig-type="half-left">
|
|
994
|
+
<label>FIGURE 1</label>
|
|
995
|
+
<caption>
|
|
996
|
+
<p>Radiologic response assessed by positron emission tomography computed tomography in patients with classical Hodgkin lymphoma treated by low-dose anti-PD1 antibodies pembrolizumab and nivolumab.</p>
|
|
997
|
+
</caption>
|
|
998
|
+
<p>A. Patient P4, pembrolizumab cohort. Relapse with cervical lymphadenopathy (arrowhead), bilateral axillary lymphadenopathy (vertical arrows), multiple pulmonary nodules (open arrows), splenic nodules (open arrow), and para-aortic lymphadenopathy (open arrow) (left panel). Resolution of most of the lesions after 400 mg of pembrolizumab, except the right axillary lymphadenopathy (vertical arrow), splenic nodules and para-aortic lymphadenopathy (open arrows) (middle left panel). Further improvement in lesions after a cumulative dose of 1300 mg of pembrolizumab, with persistence of minimally hypermetabolic lesions (open arrows) (middle right panel). Disease progression after a cumulative dose of 2600 mg of pembrolizumab, with re-appearance of right axillary lymphadenopathy (arrow), porta hepatis lymphadenopathy and para-aortic lymphadenopathy (open arrows). There was new-onset left cervical lymhadenopathy (arrowhead).</p>
|
|
999
|
+
<p>B. Patient P6, pembrolizumab cohort. Relapse with mediastinal lymphadenopathy (arrow), together with two lesions in the chest and left internal mammary region (open arrows) (right panel). Resolution of most of the lesions, with persistence of minimally hypermetabolic mediastinal lymphoadenopathy (arrow) after 300 mg of pembrolizumab (middle panel). Disease progression after 1400 mg of pembrolizumab, with multiple lung nodules, the more prominent ones being indicated by open arrows (right panel).</p>
|
|
1000
|
+
<p>C. Patient P7, pembrolizumab cohort. Refractory disease with large right and left cervical lymphadenopathy (arrows) (left panel). Complete response of all lesions after 400 mg of pembrolizumab (middle left panel). Relapse with right cervical lymphadenopathy and left peri-parotid lesion (arrows) (middle right panel). Complete response of lesions after two cycles of pembrolizumab (100 mg/cycle) and brentuximab vedotin (100 mg/cycle) (right panel).</p>
|
|
1001
|
+
<p>D. Patient P11, pembrolizumab cohort. Refractory disease with persistent lesion in the C1 and S1 vertebrae (arrows) (left panel). Complete response of all lesions after 400 mg of pembrolizumab (middle left panel). Enlarged views of the two lesions and their complete response (right two panels).</p>
|
|
1002
|
+
<p>E. Patient N2, nivolumab cohort. Complete response of cervical, axillary, mediastinal, abdominal and pelvic lymphadenopathy after 160 mg of nivolumab (images before treatment not available) (left panel). Disease relapse after completion of 2 years of nivolumab treatment, showing left cervical lymphadenopathy (arrows) (middle panel). Complete response after 320 mg of nivolumab (right panel).</p>
|
|
1003
|
+
<p>F. Patient N4, nivolumab cohort. Refractory disease with left cervical, multiple mediastinal and left hilar lymphadenopathy (arrows). Complete response after 160 mg of nivolumab.</p>
|
|
1004
|
+
<p>G. Patient N6. Refractory disease, showing peri-pancreatic and para-aortic lymphadenopathy (arrows), together with osseous involvement in the left humerus, sternum and left acetabulum (open arrows) (left panel). Resolution of these lesions after 360 mg of nivolumab. A right axillary lymph node of mild activity was noted (arrow) (middle panel). Right axillary lymph node of uncertain nature and minimal activity was still present, after 840 mg of nivolumab (arrow) (right panel).</p>
|
|
1005
|
+
<graphic xlink:href="https://siam-x5432.ciplit.com/action/leanworkflowDownloadAttachment?id=e6585ce0-2402-4ca8-9c60-5ac6d40e6872&name=figure+1+revised.tif" />
|
|
1006
|
+
</fig>
|
|
1007
|
+
</sec>
|
|
1008
|
+
<sec>
|
|
1009
|
+
<title>Outcome of mCR patients</title>
|
|
1010
|
+
<p>Of eight mCR cases, two cases had relapsed after completion of 2 years of treatment (
|
|
1011
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0002">Figure 2</xref>). Patient P1 relapsed 11 months after stopping pembrolizumab. The relapsed lymphoma showed EBV-positive Reed-Sternberg cells, whereas the original lymphoma was EBV-negative.
|
|
1012
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0016">
|
|
1013
|
+
<sup>16</sup>
|
|
1014
|
+
</xref> Patient P7 relapsed 9 months after stopping pembrolizumab. The other six patients had remained in continuous mCR, for a median of 21 (range: 6–46) months, with three of whom already off treatment. Patient P9 achieved mCR after 6 cycles, received two more cycles, and then changed to the less expensive nivolumab (40 mg Q2W) for financial reasons. Patient P2 delivered a healthy baby girl 33 months after stopping pembrolizumab. Pregnancy was uncomplicated.
|
|
1015
|
+
</p>
|
|
1016
|
+
<fig id="HON-20-0144-fig-0002" position="float" fig-type="half-left">
|
|
1017
|
+
<label>FIGURE 2</label>
|
|
1018
|
+
<caption>
|
|
1019
|
+
<p>
|
|
1020
|
+
<bold>Swimmer plot of patients in the pembrolizumab and nivolumab cohorts.</bold> mCR: metabolic complete response; PR: partial remission; IR: indeterminate response. Drug cessation (blue circle) in seven patients (P1, P3, P4, P5, P7, N1, N2) represented completion of 2 years of treatment. In patient P2, drug cessation represented truncation of treatment in an attempt to conceive. In patient P9, drug cessation was because of financial constraints.
|
|
1021
|
+
</p>
|
|
1022
|
+
</caption>
|
|
1023
|
+
<graphic xlink:href="https://siam-x5432.ciplit.com/action/leanworkflowDownloadAttachment?id=e6585ce0-2402-4ca8-9c60-5ac6d40e6872&name=figure+2.jpg" />
|
|
1024
|
+
</fig>
|
|
1025
|
+
</sec>
|
|
1026
|
+
<sec>
|
|
1027
|
+
<title>Outcome of PR patients</title>
|
|
1028
|
+
<p>Patient P4 was in PR for 24 months, before disease progression occurred. Treatment was changed to nivolumab (40 mg Q2W), and she has since remained in stable disease for 8 months, pending the next radiologic assessment. Patient P6 remained in PR for 11 months before disease progression. She did not respond to BV and salvage chemotherapy (gemcitabine, cisplatin, dexamethasone), and died 8 months afterwards. Patient 10 has been in PR for 12 months, pending the next radiologic reassessment.</p>
|
|
1029
|
+
</sec>
|
|
1030
|
+
<sec>
|
|
1031
|
+
<title>Re-treatment of relapses with pembrolizumab</title>
|
|
1032
|
+
<p>Both relapsed patients were re-treated with pembrolizumab at 100 mg Q3W. Patient P1 achieved mCR again, after a cumulative dose of 1500 mg.
|
|
1033
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0016">
|
|
1034
|
+
<sup>16</sup>
|
|
1035
|
+
</xref> Patient P7 achieved mCR after two cycles of pembrolizumab (100 mg Q3W) combined with BV (100 mg Q3W) (
|
|
1036
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0001">Table 1</xref>). Both patients have remained in continuous mCR.
|
|
1037
|
+
</p>
|
|
1038
|
+
</sec>
|
|
1039
|
+
<sec>
|
|
1040
|
+
<title>Adverse events of pembrolizumab treatment</title>
|
|
1041
|
+
<p>After 287 treatment cycles, AEs were only observed in three cases (
|
|
1042
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0001">Table 1</xref>). Patient P2 developed grade 1 diarrhea after 17 cycles (1700 mg). Sigmoidoscopy revealed minimal inflammation, and colonic biopsy showed mild acute inflammation. The diarrhea subsided with budesonide. Pembrolizumab was truncated at that point because the patient wanted to conceive. Patient P3 developed intermittent grade 1 eczema. After 25 cycles (2500 mg), he developed grade 1 hypothyroidism (elevated thyroid stimulating hormone, TSH), which progressed to grade 2 hypothyroidism (decreased thyroxine, requiring replacement) after 28 cycles (2800 mg). There were no detectable anti-thyroid antibodies. Patient P8 had intermittent grade 1 urticaria, which responded to symptomatic treatment. In both cases, therapy was uninterrupted.
|
|
1043
|
+
</p>
|
|
1044
|
+
</sec>
|
|
1045
|
+
<sec>
|
|
1046
|
+
<title>Nivolumab cohort</title>
|
|
1047
|
+
<p>Three men and three women at a median age of 40.5 (range: 34–57) years were treated (
|
|
1048
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0002">Table 2</xref>). On presentation, two patients had early (stage I/II) disease, and four patients had advanced (stage III/IV) disease. At relapsed/refractory disease, four patients had advanced disease. There was a median of 3 (range: 2–7) lines of prior therapy, which included BV in three cases (50%), auto-HSCT in one case (17%), and allogeneic HSCT (allo-HSCT) in two cases (33%). Median time from last regimen to treatment was 6.5 (range: 1–59) months (
|
|
1049
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0003">Table 3</xref>). All patients received a flat-dose of 40 mg Q2W.
|
|
1050
|
+
</p>
|
|
1051
|
+
</sec>
|
|
1052
|
+
<sec>
|
|
1053
|
+
<title>Response to nivolumab</title>
|
|
1054
|
+
<p>The best radiologic response was mCR in four cases (67%) (Deauville score: 1,
|
|
1055
|
+
<italic>N</italic> = 2; 3,
|
|
1056
|
+
<italic>N</italic> = 2; two cases with > 50% shrinkage of tumor) and partial response in one case (17%) (
|
|
1057
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0001">Figure 1 E–G</xref>). One case (patient N6) showed resolution of all index lesions on PET/CT scan performed after 9 cycles (360 mg) (
|
|
1058
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0001">Figure 1 G</xref>), except for a small minimally FDG-avid right axillary lymph node, which was an involved site on presentation but not at refractory disease. The lesion further decreased in size and metabolic activity 6 months later, suggesting that it represented pseudo-progression. At that juncture and before the next radiologic assessment, the patient was best considered to have an indeterminate response (IR).
|
|
1059
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0014">
|
|
1060
|
+
<sup>14</sup>
|
|
1061
|
+
</xref> The median dose of nivolumab required to give the best response was 160 (range: 160–360) mg.
|
|
1062
|
+
</p>
|
|
1063
|
+
</sec>
|
|
1064
|
+
<sec>
|
|
1065
|
+
<title>Outcome of CR patients</title>
|
|
1066
|
+
<p>One case (patient N2) completed 2 years of treatment, and relapsed 8 months later (
|
|
1067
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0002">Figure 2</xref>). The other three patients have remained in continuous mCR for a median of 20 (range: 8–28) months, with one of them already off treatment.
|
|
1068
|
+
</p>
|
|
1069
|
+
</sec>
|
|
1070
|
+
<sec>
|
|
1071
|
+
<title>Outcome of PR/IR patients</title>
|
|
1072
|
+
<p>Patient N5 has remained in PR, pending the next radiologic reassessment. Patient N6 has remained asymptomatic, with his IR status to be re-examined in 3 months.</p>
|
|
1073
|
+
</sec>
|
|
1074
|
+
<sec>
|
|
1075
|
+
<title>Re-treatment with nivolumab</title>
|
|
1076
|
+
<p>Patient N2 achieved mCR again after a cumulative dose of 320 mg. He has remained in mCR for about 2 months.</p>
|
|
1077
|
+
</sec>
|
|
1078
|
+
<sec>
|
|
1079
|
+
<title>Adverse events of nivolumab treatment</title>
|
|
1080
|
+
<p>After 195 treatment cycles, AEs were observed in four cases (
|
|
1081
|
+
<xref ref-type="table" rid="HON-20-0144-tbl-0002">Table 2</xref>). Patient N1 developed intermittent grade 1 eczema, which responded to symptomatic treatment. Persistently depressed morning cortisol levels occurred after nine cycles (360 mg) (nadir: 88 nmol/L; reference range: 130–600 nmol/L). There was no evidence of hypoadrenalism clinically (hypotension, asthenia) or biochemically (hyponatremia, hyperkalemia). One month after completion of 2 years of treatment, morning cortisol levels became normal. Patient N3 had a history of immune thrombocytopenia, and nivolumab expectedly resulted in exacerbation (nadir platelet count: 4 × 10
|
|
1082
|
+
<sup>9</sup>/L). Immune thrombocytopenia responded fully to corticosteroid therapy, and did not recur afterwards. Grade 1 hypoadrenalism developed after 19 cycles (760 mg) (nadir morning cortisol: 69 nmol/L). Symptoms of hypogonadism and diabetes insipidus appeared after the first 2 years of treatment. With relapse and after the second cycle (80 mg) of re-treatment, hypogonadism and diabetes insipidus were documented biochemically, requiring hormonal replacement. Overall features were consistent with grade 2 hypophysitis. Patient N4 developed grade 1 hypoadrenalism after four cycles (160 mg) (nadir morning cortisol: 77 nmol/L). There was immunological evidence of thyroiditis (elevated anti-thyroid peroxidase antibody) and a transient increase in thyroxine after seven cycles (280 mg), but thyroxine/TSH levels became normal spontaneously 4 months later. Patient N6 had subclinical hypothyroidism (elevated TSH) at baseline before nivolumab treatment. After 20 cycles (800 mg) of treatment, grade 2 hypothyroidism occurred, requiring thyroxine replacement.
|
|
1083
|
+
</p>
|
|
1084
|
+
</sec>
|
|
1085
|
+
<sec>
|
|
1086
|
+
<title>Molecular responses</title>
|
|
1087
|
+
<p>EBER-ISH was performed in 16 cases, with six cases (patients P1, P3, P5, P6, P9, N2) showing EBER-positive Reed-Sternberg cells. Plasma EBV DNA was serially monitored in five cases (patients P1, P5, P6, P9, N2). In four cases reaching mCR (patients P1, P5, P9, N2), molecular remission with undetectable plasma EBV DNA was also achieved. In patient P6, who only achieved PR, plasma EBV DNA remained persistently quantifiable. Terminally, her pleural fluid also contained high levels of cell-free EBV DNA, confirming lymphomatous involvement, although cytologically no neoplastic cells were evident.</p>
|
|
1088
|
+
</sec>
|
|
1089
|
+
<sec>
|
|
1090
|
+
<title>Survivals</title>
|
|
1091
|
+
<p>The median PFS of the pembrolizumab and nivolumab cohorts were 35 and 33 months respectively (
|
|
1092
|
+
<xref ref-type="fig" rid="HON-20-0144-fig-0003">Figure 3 A-C</xref>). The median OS has not been reached for the two cohorts.
|
|
1093
|
+
</p>
|
|
1094
|
+
<fig id="HON-20-0144-fig-0003" position="float" fig-type="half-left">
|
|
1095
|
+
<label>FIGURE 3</label>
|
|
1096
|
+
<caption>
|
|
1097
|
+
<p>
|
|
1098
|
+
<bold>Survivals of patients in the pembrolizumab and nivolumab cohorts.</bold> A. Progression free survival of the pembrolizumab cohort. B: Overall survival of the pembrolizumab cohort. C: Progression free survival for the nivolumab cohort. Overall survival of the nivolumab cohort is not shown, as there were no events associated with overall survival in the Kaplan-Meier plot.
|
|
1099
|
+
</p>
|
|
1100
|
+
</caption>
|
|
1101
|
+
<graphic xlink:href="https://siam-x5432.ciplit.com/action/leanworkflowDownloadAttachment?id=e6585ce0-2402-4ca8-9c60-5ac6d40e6872&name=figure+3.jpg" />
|
|
1102
|
+
</fig>
|
|
1103
|
+
</sec>
|
|
1104
|
+
</sec>
|
|
1105
|
+
<sec sec-type="discussion">
|
|
1106
|
+
<title>DISCUSSION</title>
|
|
1107
|
+
<p>This study describes our experience of low-dose anti-PD1 antibodies in relapsed/refractory cHL. We used pembrolizumab at one-half and nivolumab at one-sixth of the approved doses. This strategy has hitherto not been tried in other studies.</p>
|
|
1108
|
+
<p>With pembrolizumab used at 100 mg Q3W (2 mg/kg Q3W in one case), ORR was 100%, with CR at 73%. A previous phase 1 study used pembrolizumab at 10 mg/kg Q2W (about 10 times our dose).
|
|
1109
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0007">
|
|
1110
|
+
<sup>7</sup>
|
|
1111
|
+
</xref> In 31 patients failing BV with or without previous auto-HSCT, ORR was 65%, with CR only at 16%. A subsequent phase 2 study used pembrolizumab at 200 mg Q3W (twice our dose).
|
|
1112
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0008">
|
|
1113
|
+
<sup>8</sup>
|
|
1114
|
+
</xref> ORR was 75%, with CR also low at 23%. A recent update of 210 patients (receiving pembrolizumab at 200 mg Q3W) reported an ORR of 72%, with CR at 28%.
|
|
1115
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0018">
|
|
1116
|
+
<sup>18</sup>
|
|
1117
|
+
</xref> We observed a high ORR with particularly a high CR rate in our cohort. This is unlikely related to differences in prior therapies, which in fact had not been shown to significantly impact on ORR/CR.
|
|
1118
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0008 HON-20-0144-bib-0018">
|
|
1119
|
+
<sup>8,18</sup>
|
|
1120
|
+
</xref> Furthermore, the median cumulative dose required for best response was merely 400 mg in our patients; as compared with 50 mg/kg (8–10 times our dose) in the phase 1 study;
|
|
1121
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0007">
|
|
1122
|
+
<sup>7</sup>
|
|
1123
|
+
</xref> and 1200 mg (three times our dose) in the phase 2 study.
|
|
1124
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0008">
|
|
1125
|
+
<sup>8</sup>
|
|
1126
|
+
</xref>
|
|
1127
|
+
</p>
|
|
1128
|
+
<p>After 287 treatment cycles, only three patients developed AEs, all grade 1–2. Conversely, in the high-dose phase 1 study,
|
|
1129
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0007">
|
|
1130
|
+
<sup>7</sup>
|
|
1131
|
+
</xref> the frequency of AEs was very high at 68% (grade 3/4: 16%), with a drug discontinuation rate of 6.5%. In the phase 2 study using a lower dose,
|
|
1132
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0008">
|
|
1133
|
+
<sup>8</sup>
|
|
1134
|
+
</xref> the frequency of AEs was less at 30%, with a drug discontinuation rate of 1%. In the latest update of this phase 2 cohort, the frequency of AEs was 73% (grade 3/4: 12%), with a drug discontinuation rate of 6.7%.
|
|
1135
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0018">
|
|
1136
|
+
<sup>18</sup>
|
|
1137
|
+
</xref> Hence, AEs were dose-related. Our use of low-dose pembrolizumab significantly decreased AEs and their severity, wtih no drug discontinuation.
|
|
1138
|
+
</p>
|
|
1139
|
+
<p>With nivolumab used at 40 mg Q2W, ORR was 100%, with CR at 67%. A previous phase 1 study used nivolumab at 3 mg/kg Q2W (about 6 times our dose).
|
|
1140
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0005">
|
|
1141
|
+
<sup>5</sup>
|
|
1142
|
+
</xref> In 23 patients, 80% of whom had failed BV, auto-HSCT and radiotherapy, the ORR was 87%, with CR only at 17%. A subsequent phase 2 study also used nivolumab at 3 mg/kg Q2W.
|
|
1143
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0019">
|
|
1144
|
+
<sup>19</sup>
|
|
1145
|
+
</xref> In 80 patients failing auto-HSCT and BV, the ORR was 73%, with CR at 28%. A more recent update of a larger combined cohort of 243 patients treated with nivolumab at 3 mg/kg Q2W showed an ORR of 69%, with CR at 16%.
|
|
1146
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0020">
|
|
1147
|
+
<sup>20</sup>
|
|
1148
|
+
</xref> In our low-dose nivolumab cohort, there was high ORR and CR rate. Again, this was unlikely attributable to prior therapies, which had not been shown to impact significantly on responses.
|
|
1149
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0020">
|
|
1150
|
+
<sup>20</sup>
|
|
1151
|
+
</xref> The median cumulative dose needed to achieve best responses was also much lower in our approach (160 mg), as compared with 12 mg/kg (about six times our dose) in both the phase 1 and phase 2 studies.
|
|
1152
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0005 HON-20-0144-bib-0019 HON-20-0144-bib-0020">
|
|
1153
|
+
<sup>5,19,20</sup>
|
|
1154
|
+
</xref>
|
|
1155
|
+
</p>
|
|
1156
|
+
<p>After 195 treatment cycles, AEs were observed in four cases. However, two cases (patients N3 and N6) had pre-existing autoimmune conditions, and they would typically be excluded from previous clinical trials. Hence, in patients without autoimmune diseases, AEs were observed only in two cases (50%), all merely grade 1. Conversely, in the phase 1 nivolumab study,
|
|
1157
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0005">
|
|
1158
|
+
<sup>5</sup>
|
|
1159
|
+
</xref> the AE frequency was 78% (grade 3/4: 22%), with a drug discontinuation rate of 8.7%. In another phase 2 study, rates of grade 3/4 AEs and grade 5 AE (death) were 41% and 1%.
|
|
1160
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0019">
|
|
1161
|
+
<sup>19</sup>
|
|
1162
|
+
</xref> Hence, our low-dose approach decreased the frequency and severity of AEs, with no drug discontinuation.
|
|
1163
|
+
</p>
|
|
1164
|
+
<p>In most countries, approvals for anti-PD1 antibodies in cHL stipulate failure after several lines of therapy, including BV and auto-HSCT. BV is not reimbursed in Hong Kong. On a per-dose basis, depending on bodyweight, BV at 1.8 mg/kg is more expensive than pembrolizumab (100 mg) by 5–7.5 times, and nivolumab (40 mg) by 20–30 times. In four of our patients, anti-PD1 antibodies were used before BV, which was unaffordable to them. Because of good responses, none of our patients opted for auto-HSCT. Our approach of continuing anti-PD1 antibodies differs from conventional HSCT-based strategies, where auto-HSCT is recommended after successful BV treatment, and allo-HSCT is recommended for failed auto-HSCT.
|
|
1165
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0021">
|
|
1166
|
+
<sup>21</sup>
|
|
1167
|
+
</xref> In our cohort, 71% (12/17) of patients were less than 40 years old. In such young patients, maintenance with anti-PD1 antibodies avoids the long-term toxicities of high-dose chemotherapy. Fertility may be preserved in selected cases, exemplified by the successful pregnancy in patient P2.
|
|
1168
|
+
</p>
|
|
1169
|
+
<p>Re-treatment with anti-PD1 antibodies has not been extensively studied. Three patients in our series relapsed after completion of 2 years of anti-PD1 antibody treatment. Re-treatment with the original anti-PD1 antibodies at the same dose led to mCR in all of them. Longer follow-up will be needed to determine if such remissions are durable.</p>
|
|
1170
|
+
<p>This was a retrospective analysis involving a relatively limited number of patients. Therefore, the long-term efficacy of low-dose pembrolizumab and nivolumab requires validation prospectively in comparison with standard doses of these drugs. Furthermore, it should be noted that autologous HSCT is potentially curative for over half of eligible patients with relapsed/refractory cHL.
|
|
1171
|
+
<xref ref-type="bibr" rid="HON-20-0144-bib-0021">
|
|
1172
|
+
<sup>21</sup>
|
|
1173
|
+
</xref> Whether such durable results are achievable with anti-PD1 antibodies will need longer observations.
|
|
1174
|
+
</p>
|
|
1175
|
+
<p>In conclusion, low-dose anti-PD1 antibodies were highly efficacious and safe in relapsed/refractory cHL. In resource-constrained regions, this approach has far-reaching financial implications. It significantly economizes on medication expenses, so underprivileged patients will not be barred from receiving these important drugs because of unaffordability. By minimizing AEs, the costs of managing complications of PD1 blockade are also reduced. Finally, with longer follow-up, it remains to be determined if auto-HSCT might be obviated in some cases, thereby further reducing immediate and long-term healthcare costs.</p>
|
|
1176
|
+
</sec>
|
|
1177
|
+
</body>
|
|
1178
|
+
<back>
|
|
1179
|
+
<fn-group>
|
|
1180
|
+
<fn fn-type="conflict">
|
|
1181
|
+
<p content-type="fn-title">Acknowledgment and conflicts of interests</p>
|
|
1182
|
+
<p>The authors have no acknowledgment to make and no conflicts of interests to declare.</p>
|
|
1183
|
+
</fn>
|
|
1184
|
+
</fn-group>
|
|
1185
|
+
<ref-list>
|
|
1186
|
+
<title>REFERENCES</title>
|
|
1187
|
+
<ref id="HON-20-0144-bib-0001">
|
|
1188
|
+
<label>1</label>
|
|
1189
|
+
<?AuthorQuery id="Q1" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 1 "Roemer, Advani, Ligon, Natkunam, Redd, Homer, Shipp, …, 2016")"?>
|
|
1190
|
+
<mixed-citation publication-type="journal">
|
|
1191
|
+
<person-group person-group-type="author">
|
|
1192
|
+
<string-name>
|
|
1193
|
+
<surname>Roemer</surname>,
|
|
1194
|
+
<given-names>M. G.</given-names>
|
|
1195
|
+
</string-name>,
|
|
1196
|
+
<string-name>
|
|
1197
|
+
<surname>Advani</surname>,
|
|
1198
|
+
<given-names>R. H.</given-names>
|
|
1199
|
+
</string-name>,
|
|
1200
|
+
<string-name>
|
|
1201
|
+
<surname>Ligon</surname>,
|
|
1202
|
+
<given-names>A. H.</given-names>
|
|
1203
|
+
</string-name>,
|
|
1204
|
+
<string-name>
|
|
1205
|
+
<surname>Natkunam</surname>,
|
|
1206
|
+
<given-names>Y.</given-names>
|
|
1207
|
+
</string-name>,
|
|
1208
|
+
<string-name>
|
|
1209
|
+
<surname>Redd</surname>,
|
|
1210
|
+
<given-names>R. A.</given-names>
|
|
1211
|
+
</string-name>,
|
|
1212
|
+
<string-name>
|
|
1213
|
+
<surname>Homer</surname>,
|
|
1214
|
+
<given-names>H.</given-names>
|
|
1215
|
+
</string-name>,
|
|
1216
|
+
<etal>…</etal>
|
|
1217
|
+
<string-name>
|
|
1218
|
+
<surname>Shipp</surname>,
|
|
1219
|
+
<given-names>M. A.</given-names>
|
|
1220
|
+
</string-name>
|
|
1221
|
+
</person-group> (
|
|
1222
|
+
<year>2016</year>).
|
|
1223
|
+
<article-title>PD-L1 and PD-L2 Genetic Alterations Define Classical Hodgkin Lymphoma and Predict Outcome.</article-title>
|
|
1224
|
+
<source>Journal of Clinical Oncology</source>
|
|
1225
|
+
<italic>,</italic>
|
|
1226
|
+
<volume>34</volume>(
|
|
1227
|
+
<issue>23</issue>),
|
|
1228
|
+
<fpage>2690</fpage>–
|
|
1229
|
+
<lpage>2697</lpage>.
|
|
1230
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2016.66.4482</pub-id>
|
|
1231
|
+
<pub-id pub-id-type="pmid">27069084</pub-id>
|
|
1232
|
+
</mixed-citation>
|
|
1233
|
+
</ref>
|
|
1234
|
+
<ref id="HON-20-0144-bib-0002">
|
|
1235
|
+
<label>2</label>
|
|
1236
|
+
<mixed-citation publication-type="journal">
|
|
1237
|
+
<person-group person-group-type="author">
|
|
1238
|
+
<string-name>
|
|
1239
|
+
<surname>Liu</surname>,
|
|
1240
|
+
<given-names>W. R.</given-names>
|
|
1241
|
+
</string-name>, &
|
|
1242
|
+
<string-name>
|
|
1243
|
+
<surname>Shipp</surname>,
|
|
1244
|
+
<given-names>M. A.</given-names>
|
|
1245
|
+
</string-name>
|
|
1246
|
+
</person-group> (
|
|
1247
|
+
<year>2017</year>).
|
|
1248
|
+
<article-title>Signaling pathways and immune evasion mechanisms in classical Hodgkin lymphoma.</article-title>
|
|
1249
|
+
<source>Blood</source>
|
|
1250
|
+
<italic>,</italic>
|
|
1251
|
+
<volume>130</volume>(
|
|
1252
|
+
<issue>21</issue>),
|
|
1253
|
+
<fpage>2265</fpage>–
|
|
1254
|
+
<lpage>2270</lpage>.
|
|
1255
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1182/blood-2017-06-781989</pub-id>
|
|
1256
|
+
<pub-id pub-id-type="pmid">29167175</pub-id>
|
|
1257
|
+
</mixed-citation>
|
|
1258
|
+
</ref>
|
|
1259
|
+
<ref id="HON-20-0144-bib-0003">
|
|
1260
|
+
<label>3</label>
|
|
1261
|
+
<?AuthorQuery id="Q2" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 3 "Brahmer, Drake, Wollner, Powderly, Picus, Sharfman, Topalian, …, 2010")"?>
|
|
1262
|
+
<mixed-citation publication-type="journal">
|
|
1263
|
+
<person-group person-group-type="author">
|
|
1264
|
+
<string-name>
|
|
1265
|
+
<surname>Brahmer</surname>,
|
|
1266
|
+
<given-names>J. R.</given-names>
|
|
1267
|
+
</string-name>,
|
|
1268
|
+
<string-name>
|
|
1269
|
+
<surname>Drake</surname>,
|
|
1270
|
+
<given-names>C. G.</given-names>
|
|
1271
|
+
</string-name>,
|
|
1272
|
+
<string-name>
|
|
1273
|
+
<surname>Wollner</surname>,
|
|
1274
|
+
<given-names>I.</given-names>
|
|
1275
|
+
</string-name>,
|
|
1276
|
+
<string-name>
|
|
1277
|
+
<surname>Powderly</surname>,
|
|
1278
|
+
<given-names>J. D.</given-names>
|
|
1279
|
+
</string-name>,
|
|
1280
|
+
<string-name>
|
|
1281
|
+
<surname>Picus</surname>,
|
|
1282
|
+
<given-names>J.</given-names>
|
|
1283
|
+
</string-name>,
|
|
1284
|
+
<string-name>
|
|
1285
|
+
<surname>Sharfman</surname>,
|
|
1286
|
+
<given-names>W. H.</given-names>
|
|
1287
|
+
</string-name>,
|
|
1288
|
+
<etal>…</etal>
|
|
1289
|
+
<string-name>
|
|
1290
|
+
<surname>Topalian</surname>,
|
|
1291
|
+
<given-names>S. L.</given-names>
|
|
1292
|
+
</string-name>
|
|
1293
|
+
</person-group> (
|
|
1294
|
+
<year>2010</year>).
|
|
1295
|
+
<article-title>Phase I study of single-agent anti-programmed death-1 (MDX-1106) in refractory solid tumors: Safety, clinical activity, pharmacodynamics, and immunologic correlates.</article-title>
|
|
1296
|
+
<source>Journal of Clinical Oncology</source>
|
|
1297
|
+
<italic>,</italic>
|
|
1298
|
+
<volume>28</volume>(
|
|
1299
|
+
<issue>19</issue>),
|
|
1300
|
+
<fpage>3167</fpage>–
|
|
1301
|
+
<lpage>3175</lpage>.
|
|
1302
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2009.26.7609</pub-id>
|
|
1303
|
+
<pub-id pub-id-type="pmid">20516446</pub-id>
|
|
1304
|
+
</mixed-citation>
|
|
1305
|
+
</ref>
|
|
1306
|
+
<ref id="HON-20-0144-bib-0004">
|
|
1307
|
+
<label>4</label>
|
|
1308
|
+
<mixed-citation publication-type="journal">
|
|
1309
|
+
<person-group person-group-type="author">
|
|
1310
|
+
<string-name>
|
|
1311
|
+
<surname>Ansell</surname>,
|
|
1312
|
+
<given-names>S. M.</given-names>
|
|
1313
|
+
</string-name>,
|
|
1314
|
+
<string-name>
|
|
1315
|
+
<surname>Lesokhin</surname>,
|
|
1316
|
+
<given-names>A. M.</given-names>
|
|
1317
|
+
</string-name>,
|
|
1318
|
+
<string-name>
|
|
1319
|
+
<surname>Borrello</surname>,
|
|
1320
|
+
<given-names>I.</given-names>
|
|
1321
|
+
</string-name>,
|
|
1322
|
+
<string-name>
|
|
1323
|
+
<surname>Halwani</surname>,
|
|
1324
|
+
<given-names>A.</given-names>
|
|
1325
|
+
</string-name>,
|
|
1326
|
+
<string-name>
|
|
1327
|
+
<surname>Scott</surname>,
|
|
1328
|
+
<given-names>E. C.</given-names>
|
|
1329
|
+
</string-name>,
|
|
1330
|
+
<string-name>
|
|
1331
|
+
<surname>Gutierrez</surname>,
|
|
1332
|
+
<given-names>M.</given-names>
|
|
1333
|
+
</string-name>,
|
|
1334
|
+
<etal>…</etal>
|
|
1335
|
+
<string-name>
|
|
1336
|
+
<surname>Armand</surname>,
|
|
1337
|
+
<given-names>P.</given-names>
|
|
1338
|
+
</string-name>
|
|
1339
|
+
</person-group> (
|
|
1340
|
+
<year>2015</year>).
|
|
1341
|
+
<article-title>PD-1 blockade with nivolumab in relapsed or refractory Hodgkin’s lymphoma.</article-title>
|
|
1342
|
+
<source>The New England Journal of Medicine</source>
|
|
1343
|
+
<italic>,</italic>
|
|
1344
|
+
<volume>372</volume>(
|
|
1345
|
+
<issue>4</issue>),
|
|
1346
|
+
<fpage>311</fpage>–
|
|
1347
|
+
<lpage>319</lpage>.
|
|
1348
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1056/NEJMoa1411087</pub-id>
|
|
1349
|
+
<pub-id pub-id-type="pmid">25482239</pub-id>
|
|
1350
|
+
</mixed-citation>
|
|
1351
|
+
</ref>
|
|
1352
|
+
<ref id="HON-20-0144-bib-0005">
|
|
1353
|
+
<label>5</label>
|
|
1354
|
+
<mixed-citation publication-type="journal">
|
|
1355
|
+
<person-group person-group-type="author">
|
|
1356
|
+
<string-name>
|
|
1357
|
+
<surname>Hamid</surname>,
|
|
1358
|
+
<given-names>O.</given-names>
|
|
1359
|
+
</string-name>,
|
|
1360
|
+
<string-name>
|
|
1361
|
+
<surname>Robert</surname>,
|
|
1362
|
+
<given-names>C.</given-names>
|
|
1363
|
+
</string-name>,
|
|
1364
|
+
<string-name>
|
|
1365
|
+
<surname>Daud</surname>,
|
|
1366
|
+
<given-names>A.</given-names>
|
|
1367
|
+
</string-name>,
|
|
1368
|
+
<string-name>
|
|
1369
|
+
<surname>Hodi</surname>,
|
|
1370
|
+
<given-names>F. S.</given-names>
|
|
1371
|
+
</string-name>,
|
|
1372
|
+
<string-name>
|
|
1373
|
+
<surname>Hwu</surname>,
|
|
1374
|
+
<given-names>W. J.</given-names>
|
|
1375
|
+
</string-name>,
|
|
1376
|
+
<string-name>
|
|
1377
|
+
<surname>Kefford</surname>,
|
|
1378
|
+
<given-names>R.</given-names>
|
|
1379
|
+
</string-name>,
|
|
1380
|
+
<etal>…</etal>
|
|
1381
|
+
<string-name>
|
|
1382
|
+
<surname>Ribas</surname>,
|
|
1383
|
+
<given-names>A.</given-names>
|
|
1384
|
+
</string-name>
|
|
1385
|
+
</person-group> (
|
|
1386
|
+
<year>2013</year>).
|
|
1387
|
+
<article-title>Safety and tumor responses with lambrolizumab (anti-PD-1) in melanoma.</article-title>
|
|
1388
|
+
<source>The New England Journal of Medicine</source>
|
|
1389
|
+
<italic>,</italic>
|
|
1390
|
+
<volume>369</volume>(
|
|
1391
|
+
<issue>2</issue>),
|
|
1392
|
+
<fpage>134</fpage>–
|
|
1393
|
+
<lpage>144</lpage>.
|
|
1394
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1056/NEJMoa1305133</pub-id>
|
|
1395
|
+
<pub-id pub-id-type="pmid">23724846</pub-id>
|
|
1396
|
+
</mixed-citation>
|
|
1397
|
+
</ref>
|
|
1398
|
+
<ref id="HON-20-0144-bib-0006">
|
|
1399
|
+
<label>6</label>
|
|
1400
|
+
<?AuthorQuery id="Q3" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 6 "Armand, Shipp, Ribrag, Michot, Zinzani, Kuruvilla, Moskowitz, …, 2016")"?>
|
|
1401
|
+
<mixed-citation publication-type="journal">
|
|
1402
|
+
<person-group person-group-type="author">
|
|
1403
|
+
<string-name>
|
|
1404
|
+
<surname>Armand</surname>,
|
|
1405
|
+
<given-names>P.</given-names>
|
|
1406
|
+
</string-name>,
|
|
1407
|
+
<string-name>
|
|
1408
|
+
<surname>Shipp</surname>,
|
|
1409
|
+
<given-names>M. A.</given-names>
|
|
1410
|
+
</string-name>,
|
|
1411
|
+
<string-name>
|
|
1412
|
+
<surname>Ribrag</surname>,
|
|
1413
|
+
<given-names>V.</given-names>
|
|
1414
|
+
</string-name>,
|
|
1415
|
+
<string-name>
|
|
1416
|
+
<surname>Michot</surname>,
|
|
1417
|
+
<given-names>J. M.</given-names>
|
|
1418
|
+
</string-name>,
|
|
1419
|
+
<string-name>
|
|
1420
|
+
<surname>Zinzani</surname>,
|
|
1421
|
+
<given-names>P. L.</given-names>
|
|
1422
|
+
</string-name>,
|
|
1423
|
+
<string-name>
|
|
1424
|
+
<surname>Kuruvilla</surname>,
|
|
1425
|
+
<given-names>J.</given-names>
|
|
1426
|
+
</string-name>,
|
|
1427
|
+
<etal>…</etal>
|
|
1428
|
+
<string-name>
|
|
1429
|
+
<surname>Moskowitz</surname>,
|
|
1430
|
+
<given-names>C. H.</given-names>
|
|
1431
|
+
</string-name>
|
|
1432
|
+
</person-group> (
|
|
1433
|
+
<year>2016</year>).
|
|
1434
|
+
<article-title>Programmed Death-1 Blockade With Pembrolizumab in Patients With Classical Hodgkin Lymphoma After Brentuximab Vedotin Failure.</article-title>
|
|
1435
|
+
<source>Journal of Clinical Oncology</source>
|
|
1436
|
+
<italic>,</italic>
|
|
1437
|
+
<volume>34</volume>(
|
|
1438
|
+
<issue>31</issue>),
|
|
1439
|
+
<fpage>3733</fpage>–
|
|
1440
|
+
<lpage>3739</lpage>.
|
|
1441
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2016.67.3467</pub-id>
|
|
1442
|
+
<pub-id pub-id-type="pmid">27354476</pub-id>
|
|
1443
|
+
</mixed-citation>
|
|
1444
|
+
</ref>
|
|
1445
|
+
<ref id="HON-20-0144-bib-0007">
|
|
1446
|
+
<label>7</label>
|
|
1447
|
+
<?AuthorQuery id="Q4" queryProcess="eXtyles CrossRef Check" queryText="eXtyles has not updated this reference because the article title in CrossRef significantly differs from the author's original. The CrossRef reference is Chen, R., Zinzani, P. L., Fanale, M. A., Armand, P., Johnson, N. A., Brice, P., … Moskowitz, C. H. (2017). Phase II Study of the Efficacy and Safety of Pembrolizumab for Relapsed/Refractory Classic Hodgkin Lymphoma.
|
|
1448
|
+
<italic>Journal of Clinical Oncology</italic>
|
|
1449
|
+
<italic>, </italic>
|
|
1450
|
+
<italic>35</italic>(19), 2125–2132. (Ref. 7 "Chen, Zinzani, Fanale, …, 2017")"?>
|
|
1451
|
+
<?AuthorQuery id="Q5" queryProcess="eXtyles PubMed Check" queryText="eXtyles has not updated this reference because the article title in Medline significantly differs from the author's original. The Medline reference is Chen, R., Zinzani, P. L., Fanale, M. A., Armand, P., Johnson, N. A., Brice, P., … Moskowitz, C. H., & the KEYNOTE-087. (2017). Phase II Study of the Efficacy and Safety of Pembrolizumab for Relapsed/Refractory Classic Hodgkin Lymphoma.
|
|
1452
|
+
<italic>Journal of clinical oncology : official journal of the American Society of Clinical Oncology</italic>
|
|
1453
|
+
<italic>, </italic>
|
|
1454
|
+
<italic>35</italic>(19), 2125–2132. (Ref. 7 "Chen, Zinzani, Fanale, …, 2017")"?>
|
|
1455
|
+
<mixed-citation publication-type="journal">
|
|
1456
|
+
<person-group person-group-type="author">
|
|
1457
|
+
<string-name>
|
|
1458
|
+
<surname>Chen</surname>,
|
|
1459
|
+
<given-names>R.</given-names>
|
|
1460
|
+
</string-name>,
|
|
1461
|
+
<string-name>
|
|
1462
|
+
<surname>Zinzani</surname>,
|
|
1463
|
+
<given-names>P. L.</given-names>
|
|
1464
|
+
</string-name>,
|
|
1465
|
+
<string-name>
|
|
1466
|
+
<surname>Fanale</surname>,
|
|
1467
|
+
<given-names>M. A.</given-names>
|
|
1468
|
+
</string-name>,
|
|
1469
|
+
<etal>…</etal>
|
|
1470
|
+
</person-group>. (
|
|
1471
|
+
<year>2017</year>).
|
|
1472
|
+
<article-title>KEYNOTE-087. Phase II Study of the Efficacy and Safety of Pembrolizumab for Relapsed/Refractory Classic Hodgkin Lymphoma.</article-title>
|
|
1473
|
+
<source>Journal of Clinical Oncology</source>
|
|
1474
|
+
<italic>,</italic>
|
|
1475
|
+
<volume>35</volume>(
|
|
1476
|
+
<issue>19</issue>),
|
|
1477
|
+
<fpage>2125</fpage>–
|
|
1478
|
+
<lpage>2132</lpage>.
|
|
1479
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2016.72.1316</pub-id>
|
|
1480
|
+
<pub-id pub-id-type="pmid">28441111</pub-id>
|
|
1481
|
+
</mixed-citation>
|
|
1482
|
+
</ref>
|
|
1483
|
+
<ref id="HON-20-0144-bib-0008">
|
|
1484
|
+
<label>8</label>
|
|
1485
|
+
<?AuthorQuery id="Q6" queryProcess="eXtyles PubMed Check" queryText="eXtyles has not updated the article title because Medline's is slightly different and Title Case. The Medline article title is Translational Pharmacokinetic/Pharmacodynamic Modeling of Tumor Growth Inhibition Supports Dose-Range Selection of the Anti-PD-1 Antibody Pembrolizumab.. (Ref. 8 "Lindauer, Valiathan, Mehta, Sriram, de Greef, Elassaiss-Schaap, de Alwis, 2017")"?>
|
|
1486
|
+
<mixed-citation publication-type="journal">
|
|
1487
|
+
<person-group person-group-type="author">
|
|
1488
|
+
<string-name>
|
|
1489
|
+
<surname>Lindauer</surname>,
|
|
1490
|
+
<given-names>A.</given-names>
|
|
1491
|
+
</string-name>,
|
|
1492
|
+
<string-name>
|
|
1493
|
+
<surname>Valiathan</surname>,
|
|
1494
|
+
<given-names>C. R.</given-names>
|
|
1495
|
+
</string-name>,
|
|
1496
|
+
<string-name>
|
|
1497
|
+
<surname>Mehta</surname>,
|
|
1498
|
+
<given-names>K.</given-names>
|
|
1499
|
+
</string-name>,
|
|
1500
|
+
<string-name>
|
|
1501
|
+
<surname>Sriram</surname>,
|
|
1502
|
+
<given-names>V.</given-names>
|
|
1503
|
+
</string-name>,
|
|
1504
|
+
<string-name>
|
|
1505
|
+
<surname>de Greef</surname>,
|
|
1506
|
+
<given-names>R.</given-names>
|
|
1507
|
+
</string-name>,
|
|
1508
|
+
<string-name>
|
|
1509
|
+
<surname>Elassaiss-Schaap</surname>,
|
|
1510
|
+
<given-names>J.</given-names>
|
|
1511
|
+
</string-name>, &
|
|
1512
|
+
<string-name>
|
|
1513
|
+
<surname>de Alwis</surname>,
|
|
1514
|
+
<given-names>D. P.</given-names>
|
|
1515
|
+
</string-name>
|
|
1516
|
+
</person-group> (
|
|
1517
|
+
<year>2017</year>).
|
|
1518
|
+
<article-title>Translational pharmacokinetic / pharmacodynamic modeling of tumor growth inhibition supports dose-range selection of the anti-PD-1 antibody pembrolizumab.</article-title>
|
|
1519
|
+
<source>CPT: Pharmacometrics and Systems Pharmacology</source>
|
|
1520
|
+
<italic>,</italic>
|
|
1521
|
+
<volume>6</volume>(
|
|
1522
|
+
<issue>1</issue>),
|
|
1523
|
+
<fpage>11</fpage>–
|
|
1524
|
+
<lpage>20</lpage>.
|
|
1525
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1002/psp4.12130</pub-id>
|
|
1526
|
+
<pub-id pub-id-type="pmid">27863176</pub-id>
|
|
1527
|
+
</mixed-citation>
|
|
1528
|
+
</ref>
|
|
1529
|
+
<ref id="HON-20-0144-bib-0009">
|
|
1530
|
+
<label>9</label>
|
|
1531
|
+
<mixed-citation publication-type="journal">
|
|
1532
|
+
<person-group person-group-type="author">
|
|
1533
|
+
<string-name>
|
|
1534
|
+
<surname>Kwong</surname>,
|
|
1535
|
+
<given-names>Y. L.</given-names>
|
|
1536
|
+
</string-name>,
|
|
1537
|
+
<string-name>
|
|
1538
|
+
<surname>Lopes</surname>,
|
|
1539
|
+
<given-names>D.</given-names>
|
|
1540
|
+
</string-name>, &
|
|
1541
|
+
<string-name>
|
|
1542
|
+
<surname>Khong</surname>,
|
|
1543
|
+
<given-names>P. L.</given-names>
|
|
1544
|
+
</string-name>
|
|
1545
|
+
</person-group> (
|
|
1546
|
+
<year>2017</year>).
|
|
1547
|
+
<article-title>Low-dose pembrolizumab induced remission in patients with refractory classical Hodgkin lymphoma.</article-title>
|
|
1548
|
+
<source>British Journal of Haematology</source>
|
|
1549
|
+
<italic>,</italic>
|
|
1550
|
+
<volume>176</volume>(
|
|
1551
|
+
<issue>1</issue>),
|
|
1552
|
+
<fpage>131</fpage>–
|
|
1553
|
+
<lpage>132</lpage>.
|
|
1554
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1111/bjh.13920</pub-id>
|
|
1555
|
+
<pub-id pub-id-type="pmid">26773814</pub-id>
|
|
1556
|
+
</mixed-citation>
|
|
1557
|
+
</ref>
|
|
1558
|
+
<ref id="HON-20-0144-bib-0010">
|
|
1559
|
+
<label>10</label>
|
|
1560
|
+
<mixed-citation publication-type="journal">
|
|
1561
|
+
<person-group person-group-type="author">
|
|
1562
|
+
<string-name>
|
|
1563
|
+
<surname>Chan</surname>,
|
|
1564
|
+
<given-names>T. S.</given-names>
|
|
1565
|
+
</string-name>,
|
|
1566
|
+
<string-name>
|
|
1567
|
+
<surname>Luk</surname>,
|
|
1568
|
+
<given-names>T. H.</given-names>
|
|
1569
|
+
</string-name>,
|
|
1570
|
+
<string-name>
|
|
1571
|
+
<surname>Lau</surname>,
|
|
1572
|
+
<given-names>J. S.</given-names>
|
|
1573
|
+
</string-name>,
|
|
1574
|
+
<string-name>
|
|
1575
|
+
<surname>Khong</surname>,
|
|
1576
|
+
<given-names>P. L.</given-names>
|
|
1577
|
+
</string-name>, &
|
|
1578
|
+
<string-name>
|
|
1579
|
+
<surname>Kwong</surname>,
|
|
1580
|
+
<given-names>Y. L.</given-names>
|
|
1581
|
+
</string-name>
|
|
1582
|
+
</person-group> (
|
|
1583
|
+
<year>2017</year>).
|
|
1584
|
+
<article-title>Low-dose pembrolizumab for relapsed/refractory Hodgkin lymphoma: High efficacy with minimal toxicity.</article-title>
|
|
1585
|
+
<source>Annals of Hematology</source>
|
|
1586
|
+
<italic>,</italic>
|
|
1587
|
+
<volume>96</volume>(
|
|
1588
|
+
<issue>4</issue>),
|
|
1589
|
+
<fpage>647</fpage>–
|
|
1590
|
+
<lpage>651</lpage>.
|
|
1591
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1007/s00277-017-2931-z</pub-id>
|
|
1592
|
+
<pub-id pub-id-type="pmid">28138786</pub-id>
|
|
1593
|
+
</mixed-citation>
|
|
1594
|
+
</ref>
|
|
1595
|
+
<ref id="HON-20-0144-bib-0011">
|
|
1596
|
+
<label>11</label>
|
|
1597
|
+
<mixed-citation publication-type="journal">
|
|
1598
|
+
<person-group person-group-type="author">
|
|
1599
|
+
<string-name>
|
|
1600
|
+
<surname>Hwang</surname>,
|
|
1601
|
+
<given-names>Y. Y.</given-names>
|
|
1602
|
+
</string-name>,
|
|
1603
|
+
<string-name>
|
|
1604
|
+
<surname>Khong</surname>,
|
|
1605
|
+
<given-names>P. L.</given-names>
|
|
1606
|
+
</string-name>, &
|
|
1607
|
+
<string-name>
|
|
1608
|
+
<surname>Kwong</surname>,
|
|
1609
|
+
<given-names>Y. L.</given-names>
|
|
1610
|
+
</string-name>
|
|
1611
|
+
</person-group> (
|
|
1612
|
+
<year>2017</year>).
|
|
1613
|
+
<article-title>Low-dose nivolumab induced remission in refractory classical Hodgkin lymphoma.</article-title>
|
|
1614
|
+
<source>Annals of Hematology</source>
|
|
1615
|
+
<italic>,</italic>
|
|
1616
|
+
<volume>96</volume>(
|
|
1617
|
+
<issue>7</issue>),
|
|
1618
|
+
<fpage>1219</fpage>–
|
|
1619
|
+
<lpage>1220</lpage>.
|
|
1620
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1007/s00277-017-3007-9</pub-id>
|
|
1621
|
+
<pub-id pub-id-type="pmid">28434018</pub-id>
|
|
1622
|
+
</mixed-citation>
|
|
1623
|
+
</ref>
|
|
1624
|
+
<ref id="HON-20-0144-bib-0012">
|
|
1625
|
+
<label>12</label>
|
|
1626
|
+
<?AuthorQuery id="Q7" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 12 "Brahmer, Lacchetti, Schneider, Atkins, Brassil, Caterino, Thompson, …, 2018")"?>
|
|
1627
|
+
<mixed-citation publication-type="journal">
|
|
1628
|
+
<person-group person-group-type="author">
|
|
1629
|
+
<string-name>
|
|
1630
|
+
<surname>Brahmer</surname>,
|
|
1631
|
+
<given-names>J. R.</given-names>
|
|
1632
|
+
</string-name>,
|
|
1633
|
+
<string-name>
|
|
1634
|
+
<surname>Lacchetti</surname>,
|
|
1635
|
+
<given-names>C.</given-names>
|
|
1636
|
+
</string-name>,
|
|
1637
|
+
<string-name>
|
|
1638
|
+
<surname>Schneider</surname>,
|
|
1639
|
+
<given-names>B. J.</given-names>
|
|
1640
|
+
</string-name>,
|
|
1641
|
+
<string-name>
|
|
1642
|
+
<surname>Atkins</surname>,
|
|
1643
|
+
<given-names>M. B.</given-names>
|
|
1644
|
+
</string-name>,
|
|
1645
|
+
<string-name>
|
|
1646
|
+
<surname>Brassil</surname>,
|
|
1647
|
+
<given-names>K. J.</given-names>
|
|
1648
|
+
</string-name>,
|
|
1649
|
+
<string-name>
|
|
1650
|
+
<surname>Caterino</surname>,
|
|
1651
|
+
<given-names>J. M.</given-names>
|
|
1652
|
+
</string-name>,
|
|
1653
|
+
<etal>…</etal>
|
|
1654
|
+
<string-name>
|
|
1655
|
+
<surname>Thompson</surname>,
|
|
1656
|
+
<given-names>J. A.</given-names>
|
|
1657
|
+
</string-name>, & the
|
|
1658
|
+
<collab>National Comprehensive Cancer Network</collab>
|
|
1659
|
+
</person-group>. (
|
|
1660
|
+
<year>2018</year>).
|
|
1661
|
+
<article-title>Management of Immune-Related Adverse Events in Patients Treated With Immune Checkpoint Inhibitor Therapy: American Society of Clinical Oncology Clinical Practice Guideline.</article-title>
|
|
1662
|
+
<source>Journal of Clinical Oncology</source>
|
|
1663
|
+
<italic>,</italic>
|
|
1664
|
+
<volume>36</volume>(
|
|
1665
|
+
<issue>17</issue>),
|
|
1666
|
+
<fpage>1714</fpage>–
|
|
1667
|
+
<lpage>1768</lpage>.
|
|
1668
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2017.77.6385</pub-id>
|
|
1669
|
+
<pub-id pub-id-type="pmid">29442540</pub-id>
|
|
1670
|
+
</mixed-citation>
|
|
1671
|
+
</ref>
|
|
1672
|
+
<ref id="HON-20-0144-bib-0013">
|
|
1673
|
+
<label>13</label>
|
|
1674
|
+
<?AuthorQuery id="Q8" queryProcess="eXtyles CrossRef Check" queryText="CrossRef reports the last page should be "3067", not "3068". (Ref. 13 "Cheson, Fisher, Barrington, Cavalli, Schwartz, Zucca, Lister, 2014")"?>
|
|
1675
|
+
<?AuthorQuery id="Q9" queryProcess="eXtyles PubMed Check" queryText="The title was updated but differs from the author's original: Alliance, Australasian Leukaemia and Lymphoma Group; Eastern Cooperative Oncology Group; European Mantle Cell Lymphoma Consortium; Italian Lymphoma Foundation; European Organisation for Research; Treatment of Cancer/Dutch Hemato-Oncology Group; Grupo Español de Médula Ósea; German High-Grade Lymphoma Study Group; German Hodgkin’s Study Group; Japanese Lymphorra Study Group; Lymphoma Study Association; NCIC Clinical Trials Group; Nordic Lymphoma Study Group; Southwest Oncology Group; United Kingdom National Cancer Research Institute. Recommendations for initial evaluation, staging, and response assessment of Hodgkin and non-Hodgkin lymphoma: The Lugano classification.. (Ref. 13 "Cheson, Fisher, Barrington, Cavalli, Schwartz, Zucca, Lister, 2014")"?>
|
|
1676
|
+
<?AuthorQuery id="Q10" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 13 "Cheson, Fisher, Barrington, Cavalli, Schwartz, Zucca, Lister, 2014")"?>
|
|
1677
|
+
<mixed-citation publication-type="journal">
|
|
1678
|
+
<person-group person-group-type="author">
|
|
1679
|
+
<string-name>
|
|
1680
|
+
<surname>Cheson</surname>,
|
|
1681
|
+
<given-names>B. D.</given-names>
|
|
1682
|
+
</string-name>,
|
|
1683
|
+
<string-name>
|
|
1684
|
+
<surname>Fisher</surname>,
|
|
1685
|
+
<given-names>R. I.</given-names>
|
|
1686
|
+
</string-name>,
|
|
1687
|
+
<string-name>
|
|
1688
|
+
<surname>Barrington</surname>,
|
|
1689
|
+
<given-names>S. F.</given-names>
|
|
1690
|
+
</string-name>,
|
|
1691
|
+
<string-name>
|
|
1692
|
+
<surname>Cavalli</surname>,
|
|
1693
|
+
<given-names>F.</given-names>
|
|
1694
|
+
</string-name>,
|
|
1695
|
+
<string-name>
|
|
1696
|
+
<surname>Schwartz</surname>,
|
|
1697
|
+
<given-names>L. H.</given-names>
|
|
1698
|
+
</string-name>,
|
|
1699
|
+
<string-name>
|
|
1700
|
+
<surname>Zucca</surname>,
|
|
1701
|
+
<given-names>E.</given-names>
|
|
1702
|
+
</string-name>, &
|
|
1703
|
+
<string-name>
|
|
1704
|
+
<surname>Lister</surname>,
|
|
1705
|
+
<given-names>T. A.</given-names>
|
|
1706
|
+
</string-name>, & the
|
|
1707
|
+
<collab>Alliance, Australasian Leukaemia and Lymphoma Group</collab>, & the
|
|
1708
|
+
<collab>Eastern Cooperative Oncology Group</collab>, & the
|
|
1709
|
+
<collab>European Mantle Cell Lymphoma Consortium</collab>, & the
|
|
1710
|
+
<collab>Italian Lymphoma Foundation</collab>, & the
|
|
1711
|
+
<collab>European Organisation for Research</collab>, & the
|
|
1712
|
+
<collab>Treatment of Cancer/Dutch Hemato-Oncology Group</collab>, & the
|
|
1713
|
+
<collab>Grupo Español de Médula Ósea</collab>, & the
|
|
1714
|
+
<collab>German High-Grade Lymphoma Study Group</collab>, & the
|
|
1715
|
+
<collab>German Hodgkin’s Study Group</collab>, & the
|
|
1716
|
+
<collab>Japanese Lymphorra Study Group</collab>, & the
|
|
1717
|
+
<collab>Lymphoma Study Association</collab>, & the
|
|
1718
|
+
<collab>NCIC Clinical Trials Group</collab>, & the
|
|
1719
|
+
<collab>Nordic Lymphoma Study Group</collab>, & the
|
|
1720
|
+
<collab>Southwest Oncology Group</collab>, & the
|
|
1721
|
+
<collab>United Kingdom National Cancer Research Institute</collab>
|
|
1722
|
+
</person-group>. (
|
|
1723
|
+
<year>2014</year>).
|
|
1724
|
+
<article-title>Recommendations for initial evaluation, staging, and response assessment of Hodgkin and non-Hodgkin lymphoma: The Lugano classification.</article-title>
|
|
1725
|
+
<source>Journal of Clinical Oncology</source>
|
|
1726
|
+
<italic>,</italic>
|
|
1727
|
+
<volume>32</volume>(
|
|
1728
|
+
<issue>27</issue>),
|
|
1729
|
+
<fpage>3059</fpage>–
|
|
1730
|
+
<lpage>3068</lpage>.
|
|
1731
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2013.54.8800</pub-id>
|
|
1732
|
+
<pub-id pub-id-type="pmid">25113753</pub-id>
|
|
1733
|
+
</mixed-citation>
|
|
1734
|
+
</ref>
|
|
1735
|
+
<ref id="HON-20-0144-bib-0014">
|
|
1736
|
+
<label>14</label>
|
|
1737
|
+
<mixed-citation publication-type="journal">
|
|
1738
|
+
<person-group person-group-type="author">
|
|
1739
|
+
<string-name>
|
|
1740
|
+
<surname>Cheson</surname>,
|
|
1741
|
+
<given-names>B. D.</given-names>
|
|
1742
|
+
</string-name>,
|
|
1743
|
+
<string-name>
|
|
1744
|
+
<surname>Ansell</surname>,
|
|
1745
|
+
<given-names>S.</given-names>
|
|
1746
|
+
</string-name>,
|
|
1747
|
+
<string-name>
|
|
1748
|
+
<surname>Schwartz</surname>,
|
|
1749
|
+
<given-names>L.</given-names>
|
|
1750
|
+
</string-name>,
|
|
1751
|
+
<string-name>
|
|
1752
|
+
<surname>Gordon</surname>,
|
|
1753
|
+
<given-names>L. I.</given-names>
|
|
1754
|
+
</string-name>,
|
|
1755
|
+
<string-name>
|
|
1756
|
+
<surname>Advani</surname>,
|
|
1757
|
+
<given-names>R.</given-names>
|
|
1758
|
+
</string-name>,
|
|
1759
|
+
<string-name>
|
|
1760
|
+
<surname>Jacene</surname>,
|
|
1761
|
+
<given-names>H. A.</given-names>
|
|
1762
|
+
</string-name>,
|
|
1763
|
+
<etal>…</etal>
|
|
1764
|
+
<string-name>
|
|
1765
|
+
<surname>Armand</surname>,
|
|
1766
|
+
<given-names>P.</given-names>
|
|
1767
|
+
</string-name>
|
|
1768
|
+
</person-group> (
|
|
1769
|
+
<year>2016</year>).
|
|
1770
|
+
<article-title>Refinement of the Lugano Classification lymphoma response criteria in the era of immunomodulatory therapy.</article-title>
|
|
1771
|
+
<source>Blood</source>
|
|
1772
|
+
<italic>,</italic>
|
|
1773
|
+
<volume>128</volume>(
|
|
1774
|
+
<issue>21</issue>),
|
|
1775
|
+
<fpage>2489</fpage>–
|
|
1776
|
+
<lpage>2496</lpage>.
|
|
1777
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1182/blood-2016-05-718528</pub-id>
|
|
1778
|
+
<pub-id pub-id-type="pmid">27574190</pub-id>
|
|
1779
|
+
</mixed-citation>
|
|
1780
|
+
</ref>
|
|
1781
|
+
<ref id="HON-20-0144-bib-0015">
|
|
1782
|
+
<label>15</label>
|
|
1783
|
+
<mixed-citation publication-type="journal">
|
|
1784
|
+
<person-group person-group-type="author">
|
|
1785
|
+
<string-name>
|
|
1786
|
+
<surname>Kwong</surname>,
|
|
1787
|
+
<given-names>Y. L.</given-names>
|
|
1788
|
+
</string-name>,
|
|
1789
|
+
<string-name>
|
|
1790
|
+
<surname>Pang</surname>,
|
|
1791
|
+
<given-names>A. W.</given-names>
|
|
1792
|
+
</string-name>,
|
|
1793
|
+
<string-name>
|
|
1794
|
+
<surname>Leung</surname>,
|
|
1795
|
+
<given-names>A. Y.</given-names>
|
|
1796
|
+
</string-name>,
|
|
1797
|
+
<string-name>
|
|
1798
|
+
<surname>Chim</surname>,
|
|
1799
|
+
<given-names>C. S.</given-names>
|
|
1800
|
+
</string-name>, &
|
|
1801
|
+
<string-name>
|
|
1802
|
+
<surname>Tse</surname>,
|
|
1803
|
+
<given-names>E.</given-names>
|
|
1804
|
+
</string-name>
|
|
1805
|
+
</person-group> (
|
|
1806
|
+
<year>2014</year>).
|
|
1807
|
+
<article-title>Quantification of circulating Epstein-Barr virus DNA in NK/T-cell lymphoma treated with the SMILE protocol: Diagnostic and prognostic significance.</article-title>
|
|
1808
|
+
<source>Leukemia</source>
|
|
1809
|
+
<italic>,</italic>
|
|
1810
|
+
<volume>28</volume>(
|
|
1811
|
+
<issue>4</issue>),
|
|
1812
|
+
<fpage>865</fpage>–
|
|
1813
|
+
<lpage>870</lpage>.
|
|
1814
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1038/leu.2013.212</pub-id>
|
|
1815
|
+
<pub-id pub-id-type="pmid">23842425</pub-id>
|
|
1816
|
+
</mixed-citation>
|
|
1817
|
+
</ref>
|
|
1818
|
+
<ref id="HON-20-0144-bib-0016">
|
|
1819
|
+
<label>16</label>
|
|
1820
|
+
<mixed-citation publication-type="journal">
|
|
1821
|
+
<person-group person-group-type="author">
|
|
1822
|
+
<string-name>
|
|
1823
|
+
<surname>Kwong</surname>,
|
|
1824
|
+
<given-names>Y. L.</given-names>
|
|
1825
|
+
</string-name>,
|
|
1826
|
+
<string-name>
|
|
1827
|
+
<surname>Loong</surname>,
|
|
1828
|
+
<given-names>F.</given-names>
|
|
1829
|
+
</string-name>, &
|
|
1830
|
+
<string-name>
|
|
1831
|
+
<surname>Khong</surname>,
|
|
1832
|
+
<given-names>P. L.</given-names>
|
|
1833
|
+
</string-name>
|
|
1834
|
+
</person-group> (
|
|
1835
|
+
<year>2019</year>).
|
|
1836
|
+
<article-title>Low-dose pembrolizumab re-treatment induced complete radiologic and molecular remission in Hodgkin lymphoma recurring from a previous relapse successfully treated by pembrolizumab.</article-title>
|
|
1837
|
+
<source>Annals of Hematology</source>
|
|
1838
|
+
<italic>,</italic>
|
|
1839
|
+
<volume>98</volume>(
|
|
1840
|
+
<issue>10</issue>),
|
|
1841
|
+
<fpage>2451</fpage>–
|
|
1842
|
+
<lpage>2455</lpage>.
|
|
1843
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1007/s00277-019-03762-3</pub-id>
|
|
1844
|
+
<pub-id pub-id-type="pmid">31332470</pub-id>
|
|
1845
|
+
</mixed-citation>
|
|
1846
|
+
</ref>
|
|
1847
|
+
<ref id="HON-20-0144-bib-0017">
|
|
1848
|
+
<label>17</label>
|
|
1849
|
+
<mixed-citation publication-type="journal">
|
|
1850
|
+
<person-group person-group-type="author">
|
|
1851
|
+
<string-name>
|
|
1852
|
+
<surname>Sim</surname>,
|
|
1853
|
+
<given-names>J. P. Y.</given-names>
|
|
1854
|
+
</string-name>,
|
|
1855
|
+
<string-name>
|
|
1856
|
+
<surname>Au-Yeung</surname>,
|
|
1857
|
+
<given-names>R.</given-names>
|
|
1858
|
+
</string-name>, &
|
|
1859
|
+
<string-name>
|
|
1860
|
+
<surname>Kwong</surname>,
|
|
1861
|
+
<given-names>Y. L.</given-names>
|
|
1862
|
+
</string-name>
|
|
1863
|
+
</person-group> (
|
|
1864
|
+
<year>2020</year>).
|
|
1865
|
+
<article-title>Low-dose pembrolizumab induced complete radiologic and molecular response of posttransplant lymphoproliferative disorder presenting as classical Hodgkin lymphoma.</article-title>
|
|
1866
|
+
<source>Annals of Hematology</source>
|
|
1867
|
+
<italic>,</italic>
|
|
1868
|
+
<volume>99</volume>(
|
|
1869
|
+
<issue>2</issue>),
|
|
1870
|
+
<fpage>385</fpage>–
|
|
1871
|
+
<lpage>388</lpage>.
|
|
1872
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1007/s00277-019-03856-y</pub-id>
|
|
1873
|
+
<pub-id pub-id-type="pmid">31773213</pub-id>
|
|
1874
|
+
</mixed-citation>
|
|
1875
|
+
</ref>
|
|
1876
|
+
<ref id="HON-20-0144-bib-0018">
|
|
1877
|
+
<label>18</label>
|
|
1878
|
+
<mixed-citation publication-type="journal">
|
|
1879
|
+
<person-group person-group-type="author">
|
|
1880
|
+
<string-name>
|
|
1881
|
+
<surname>Chen</surname>,
|
|
1882
|
+
<given-names>R.</given-names>
|
|
1883
|
+
</string-name>,
|
|
1884
|
+
<string-name>
|
|
1885
|
+
<surname>Zinzani</surname>,
|
|
1886
|
+
<given-names>P. L.</given-names>
|
|
1887
|
+
</string-name>,
|
|
1888
|
+
<string-name>
|
|
1889
|
+
<surname>Lee</surname>,
|
|
1890
|
+
<given-names>H. J.</given-names>
|
|
1891
|
+
</string-name>,
|
|
1892
|
+
<string-name>
|
|
1893
|
+
<surname>Armand</surname>,
|
|
1894
|
+
<given-names>P.</given-names>
|
|
1895
|
+
</string-name>,
|
|
1896
|
+
<string-name>
|
|
1897
|
+
<surname>Johnson</surname>,
|
|
1898
|
+
<given-names>N. A.</given-names>
|
|
1899
|
+
</string-name>,
|
|
1900
|
+
<string-name>
|
|
1901
|
+
<surname>Brice</surname>,
|
|
1902
|
+
<given-names>P.</given-names>
|
|
1903
|
+
</string-name>,
|
|
1904
|
+
<etal>…</etal>
|
|
1905
|
+
<string-name>
|
|
1906
|
+
<surname>Moskowitz</surname>,
|
|
1907
|
+
<given-names>C. H.</given-names>
|
|
1908
|
+
</string-name>
|
|
1909
|
+
</person-group> (
|
|
1910
|
+
<year>2019</year>).
|
|
1911
|
+
<article-title>Pembrolizumab in relapsed or refractory Hodgkin lymphoma: 2-year follow-up of KEYNOTE-087.</article-title>
|
|
1912
|
+
<source>Blood</source>
|
|
1913
|
+
<italic>,</italic>
|
|
1914
|
+
<volume>134</volume>(
|
|
1915
|
+
<issue>14</issue>),
|
|
1916
|
+
<fpage>1144</fpage>–
|
|
1917
|
+
<lpage>1153</lpage>.
|
|
1918
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1182/blood.2019000324</pub-id>
|
|
1919
|
+
<pub-id pub-id-type="pmid">31409671</pub-id>
|
|
1920
|
+
</mixed-citation>
|
|
1921
|
+
</ref>
|
|
1922
|
+
<ref id="HON-20-0144-bib-0019">
|
|
1923
|
+
<label>19</label>
|
|
1924
|
+
<mixed-citation publication-type="journal">
|
|
1925
|
+
<person-group person-group-type="author">
|
|
1926
|
+
<string-name>
|
|
1927
|
+
<surname>Younes</surname>,
|
|
1928
|
+
<given-names>A.</given-names>
|
|
1929
|
+
</string-name>,
|
|
1930
|
+
<string-name>
|
|
1931
|
+
<surname>Santoro</surname>,
|
|
1932
|
+
<given-names>A.</given-names>
|
|
1933
|
+
</string-name>,
|
|
1934
|
+
<string-name>
|
|
1935
|
+
<surname>Shipp</surname>,
|
|
1936
|
+
<given-names>M.</given-names>
|
|
1937
|
+
</string-name>,
|
|
1938
|
+
<string-name>
|
|
1939
|
+
<surname>Zinzani</surname>,
|
|
1940
|
+
<given-names>P. L.</given-names>
|
|
1941
|
+
</string-name>,
|
|
1942
|
+
<string-name>
|
|
1943
|
+
<surname>Timmerman</surname>,
|
|
1944
|
+
<given-names>J. M.</given-names>
|
|
1945
|
+
</string-name>,
|
|
1946
|
+
<string-name>
|
|
1947
|
+
<surname>Ansell</surname>,
|
|
1948
|
+
<given-names>S.</given-names>
|
|
1949
|
+
</string-name>,
|
|
1950
|
+
<etal>…</etal>
|
|
1951
|
+
<string-name>
|
|
1952
|
+
<surname>Engert</surname>,
|
|
1953
|
+
<given-names>A.</given-names>
|
|
1954
|
+
</string-name>
|
|
1955
|
+
</person-group> (
|
|
1956
|
+
<year>2016</year>).
|
|
1957
|
+
<article-title>Nivolumab for classical Hodgkin’s lymphoma after failure of both autologous stem-cell transplantation and brentuximab vedotin: A multicentre, multicohort, single-arm phase 2 trial.</article-title>
|
|
1958
|
+
<source>The Lancet. Oncology</source>
|
|
1959
|
+
<italic>,</italic>
|
|
1960
|
+
<volume>17</volume>(
|
|
1961
|
+
<issue>9</issue>),
|
|
1962
|
+
<fpage>1283</fpage>–
|
|
1963
|
+
<lpage>1294</lpage>.
|
|
1964
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1016/S1470-2045(16)30167-X</pub-id>
|
|
1965
|
+
<pub-id pub-id-type="pmid">27451390</pub-id>
|
|
1966
|
+
</mixed-citation>
|
|
1967
|
+
</ref>
|
|
1968
|
+
<ref id="HON-20-0144-bib-0020">
|
|
1969
|
+
<label>20</label>
|
|
1970
|
+
<?AuthorQuery id="Q11" queryProcess="eXtyles CrossRef Check" queryText="CrossMark reports an erratum (or similar issue). The CrossMark type is "correction". Additional information can be found at https://doi.org/10.1200/JCO.2018.79.3547. (Ref. 20 "Armand, Engert, Younes, Fanale, Santoro, Zinzani, Ansell, …, 2018")"?>
|
|
1971
|
+
<?AuthorQuery id="Q12" queryProcess="eXtyles PubMed Check" queryText="Medline reports the journal title should be "Journal of clinical oncology : official journal of the American Society of Clinical Oncology or J Clin Oncol", not "Journal of Clinical Oncology". (Ref. 20 "Armand, Engert, Younes, Fanale, Santoro, Zinzani, Ansell, …, 2018")"?>
|
|
1972
|
+
<mixed-citation publication-type="journal">
|
|
1973
|
+
<person-group person-group-type="author">
|
|
1974
|
+
<string-name>
|
|
1975
|
+
<surname>Armand</surname>,
|
|
1976
|
+
<given-names>P.</given-names>
|
|
1977
|
+
</string-name>,
|
|
1978
|
+
<string-name>
|
|
1979
|
+
<surname>Engert</surname>,
|
|
1980
|
+
<given-names>A.</given-names>
|
|
1981
|
+
</string-name>,
|
|
1982
|
+
<string-name>
|
|
1983
|
+
<surname>Younes</surname>,
|
|
1984
|
+
<given-names>A.</given-names>
|
|
1985
|
+
</string-name>,
|
|
1986
|
+
<string-name>
|
|
1987
|
+
<surname>Fanale</surname>,
|
|
1988
|
+
<given-names>M.</given-names>
|
|
1989
|
+
</string-name>,
|
|
1990
|
+
<string-name>
|
|
1991
|
+
<surname>Santoro</surname>,
|
|
1992
|
+
<given-names>A.</given-names>
|
|
1993
|
+
</string-name>,
|
|
1994
|
+
<string-name>
|
|
1995
|
+
<surname>Zinzani</surname>,
|
|
1996
|
+
<given-names>P. L.</given-names>
|
|
1997
|
+
</string-name>,
|
|
1998
|
+
<etal>…</etal>
|
|
1999
|
+
<string-name>
|
|
2000
|
+
<surname>Ansell</surname>,
|
|
2001
|
+
<given-names>S. M.</given-names>
|
|
2002
|
+
</string-name>
|
|
2003
|
+
</person-group> (
|
|
2004
|
+
<year>2018</year>).
|
|
2005
|
+
<article-title>Nivolumab for Relapsed/Refractory Classic Hodgkin Lymphoma After Failure of Autologous Hematopoietic Cell Transplantation: Extended Follow-Up of the Multicohort Single-Arm Phase II CheckMate 205 Trial.</article-title>
|
|
2006
|
+
<source>Journal of Clinical Oncology</source>
|
|
2007
|
+
<italic>,</italic>
|
|
2008
|
+
<volume>36</volume>(
|
|
2009
|
+
<issue>14</issue>),
|
|
2010
|
+
<fpage>1428</fpage>–
|
|
2011
|
+
<lpage>1439</lpage>.
|
|
2012
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1200/JCO.2017.76.0793</pub-id>
|
|
2013
|
+
<pub-id pub-id-type="pmid">29584546</pub-id>
|
|
2014
|
+
</mixed-citation>
|
|
2015
|
+
</ref>
|
|
2016
|
+
<ref id="HON-20-0144-bib-0021">
|
|
2017
|
+
<label>21</label>
|
|
2018
|
+
<mixed-citation publication-type="journal">
|
|
2019
|
+
<person-group person-group-type="author">
|
|
2020
|
+
<string-name>
|
|
2021
|
+
<surname>Shah</surname>,
|
|
2022
|
+
<given-names>G. L.</given-names>
|
|
2023
|
+
</string-name>, &
|
|
2024
|
+
<string-name>
|
|
2025
|
+
<surname>Moskowitz</surname>,
|
|
2026
|
+
<given-names>C. H.</given-names>
|
|
2027
|
+
</string-name>
|
|
2028
|
+
</person-group> (
|
|
2029
|
+
<year>2018</year>).
|
|
2030
|
+
<article-title>Transplant strategies in relapsed/refractory Hodgkin lymphoma.</article-title>
|
|
2031
|
+
<source>Blood</source>
|
|
2032
|
+
<italic>,</italic>
|
|
2033
|
+
<volume>131</volume>(
|
|
2034
|
+
<issue>15</issue>),
|
|
2035
|
+
<fpage>1689</fpage>–
|
|
2036
|
+
<lpage>1697</lpage>.
|
|
2037
|
+
<pub-id pub-id-type="doi">https://doi.org/10.1182/blood-2017-09-772673</pub-id>
|
|
2038
|
+
<pub-id pub-id-type="pmid">29500170</pub-id>
|
|
2039
|
+
</mixed-citation>
|
|
2040
|
+
</ref>
|
|
2041
|
+
</ref-list>
|
|
2042
|
+
</back>
|
|
2043
|
+
</article>
|