plos 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,36 @@
1
+ require "rest_client"
2
+
3
+ module PLOS
4
+ class Section
5
+ attr_accessor :id
6
+ attr_accessor :title
7
+ attr_accessor :type
8
+ attr_writer :body
9
+ attr_writer :sections
10
+
11
+ def initialize(node)
12
+ self.id = node.attr("id") if node.attr("id")
13
+ self.type = node.attr("sec-type") if node.attr("sec-type")
14
+ node.children.each do |child|
15
+ case child.name
16
+ when "title"
17
+ self.title = child.text
18
+ when "sec"
19
+ self.sections << PLOS::Section.new(child)
20
+ when "fig"
21
+ self.sections << PLOS::Figure.new(child)
22
+ else
23
+ self.body << child.to_s
24
+ end
25
+ end
26
+ end
27
+
28
+ def body
29
+ @body ||= ""
30
+ end
31
+
32
+ def sections
33
+ @sections ||= []
34
+ end
35
+ end
36
+ end
data/lib/plos/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plos
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
@@ -0,0 +1,37 @@
1
+ require "nokogiri"
2
+
3
+ module PLOS
4
+ module XmlHelpers
5
+ def parse_node(node, obj=nil)
6
+ value = case(node.name)
7
+ when "arr"
8
+ node.children.collect { |child| parse_node(child) }
9
+ when "date"
10
+ DateTime.parse(node.content)
11
+ when "float"
12
+ node.content.to_f
13
+ else
14
+ node.content
15
+ end
16
+ if node.attr("name") && obj
17
+ obj.send("#{node.attr("name")}=",value)
18
+ end
19
+ value
20
+ end
21
+
22
+ def tag_value(node,tag_name)
23
+ child = node.search("#{tag_name}").first
24
+ child.text if child
25
+ end
26
+
27
+ def nodes_to_hash(nodes, attribute_name)
28
+ hash = {}
29
+ nodes.each do |node|
30
+ key = node.attr(attribute_name)
31
+ value = node.text
32
+ hash[key] = value
33
+ end
34
+ hash
35
+ end
36
+ end
37
+ end
data/spec/article1.xml ADDED
@@ -0,0 +1,999 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE article PUBLIC "-//NLM//DTD Journal Publishing DTD v3.0 20080202//EN" "http://dtd.nlm.nih.gov/publishing/3.0/journalpublishing3.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="3.0" xml:lang="EN">
4
+ <front>
5
+ <journal-meta>
6
+ <journal-id journal-id-type="nlm-ta">PLoS ONE</journal-id>
7
+ <journal-id journal-id-type="publisher-id">plos</journal-id>
8
+ <journal-id journal-id-type="pmc">plosone</journal-id>
9
+ <!--===== Grouping journal title elements =====-->
10
+ <journal-title-group>
11
+ <journal-title>PLoS ONE</journal-title>
12
+ </journal-title-group>
13
+ <issn pub-type="epub">1932-6203</issn>
14
+ <publisher>
15
+ <publisher-name>Public Library of Science</publisher-name>
16
+ <publisher-loc>San Francisco, USA</publisher-loc>
17
+ </publisher>
18
+ </journal-meta>
19
+ <article-meta>
20
+ <article-id pub-id-type="publisher-id">PONE-D-11-13738</article-id>
21
+ <article-id pub-id-type="doi">10.1371/journal.pone.0028384</article-id>
22
+ <article-categories>
23
+ <subj-group subj-group-type="heading">
24
+ <subject>Research Article</subject>
25
+ </subj-group>
26
+ <subj-group subj-group-type="Discipline-v2">
27
+ <subject>Medicine</subject>
28
+ <subj-group>
29
+ <subject>Oncology</subject>
30
+ <subj-group>
31
+ <subject>Basic cancer research</subject>
32
+ <subj-group>
33
+ <subject>Tumor physiology</subject>
34
+ </subj-group>
35
+ </subj-group>
36
+ <subj-group>
37
+ <subject>Cancer treatment</subject>
38
+ <subj-group>
39
+ <subject>Antiangiogenesis therapy</subject>
40
+ <subject>Antibody therapy</subject>
41
+ <subject>Gene therapy</subject>
42
+ <subject>Hematopoietic growth factors</subject>
43
+ </subj-group>
44
+ </subj-group>
45
+ <subj-group>
46
+ <subject>Cancers and neoplasms</subject>
47
+ <subj-group>
48
+ <subject>Gastrointestinal tumors</subject>
49
+ <subj-group>
50
+ <subject>Colon adenocarcinoma</subject>
51
+ <subject>Hepatocellular carcinoma</subject>
52
+ </subj-group>
53
+ </subj-group>
54
+ </subj-group>
55
+ </subj-group>
56
+ </subj-group>
57
+ <subj-group subj-group-type="Discipline">
58
+ <subject>Oncology</subject>
59
+ </subj-group>
60
+ </article-categories>
61
+ <title-group>
62
+ <article-title>Assessment of a Novel VEGF Targeted Agent Using Patient-Derived Tumor Tissue Xenograft Models of Colon Carcinoma with Lymphatic and Hepatic Metastases</article-title><alt-title alt-title-type="running-head">PDTT Xenograft Model for Novel Drugs Assessment</alt-title>
63
+ </title-group>
64
+ <contrib-group>
65
+ <contrib contrib-type="author" xlink:type="simple">
66
+ <name name-style="western">
67
+ <surname>Jin</surname>
68
+ <given-names>Ketao</given-names>
69
+ </name>
70
+ <xref ref-type="aff" rid="aff1">
71
+ <sup>1</sup>
72
+ </xref>
73
+ <xref ref-type="aff" rid="aff2">
74
+ <sup>2</sup>
75
+ </xref>
76
+ </contrib>
77
+ <contrib contrib-type="author" xlink:type="simple">
78
+ <name name-style="western">
79
+ <surname>Li</surname>
80
+ <given-names>Guangliang</given-names>
81
+ </name>
82
+ <xref ref-type="aff" rid="aff1">
83
+ <sup>1</sup>
84
+ </xref>
85
+ </contrib>
86
+ <contrib contrib-type="author" xlink:type="simple">
87
+ <name name-style="western">
88
+ <surname>Cui</surname>
89
+ <given-names>Binbin</given-names>
90
+ </name>
91
+ <xref ref-type="aff" rid="aff3">
92
+ <sup>3</sup>
93
+ </xref>
94
+ </contrib>
95
+ <contrib contrib-type="author" xlink:type="simple">
96
+ <name name-style="western">
97
+ <surname>Zhang</surname>
98
+ <given-names>Jing</given-names>
99
+ </name>
100
+ <xref ref-type="aff" rid="aff1">
101
+ <sup>1</sup>
102
+ </xref>
103
+ </contrib>
104
+ <contrib contrib-type="author" xlink:type="simple">
105
+ <name name-style="western">
106
+ <surname>Lan</surname>
107
+ <given-names>Huanrong</given-names>
108
+ </name>
109
+ <xref ref-type="aff" rid="aff2">
110
+ <sup>2</sup>
111
+ </xref>
112
+ </contrib>
113
+ <contrib contrib-type="author" xlink:type="simple">
114
+ <name name-style="western">
115
+ <surname>Han</surname>
116
+ <given-names>Na</given-names>
117
+ </name>
118
+ <xref ref-type="aff" rid="aff4">
119
+ <sup>4</sup>
120
+ </xref>
121
+ </contrib>
122
+ <contrib contrib-type="author" xlink:type="simple">
123
+ <name name-style="western">
124
+ <surname>Xie</surname>
125
+ <given-names>Bojian</given-names>
126
+ </name>
127
+ <xref ref-type="aff" rid="aff3">
128
+ <sup>3</sup>
129
+ </xref>
130
+ </contrib>
131
+ <contrib contrib-type="author" xlink:type="simple">
132
+ <name name-style="western">
133
+ <surname>Cao</surname>
134
+ <given-names>Feilin</given-names>
135
+ </name>
136
+ <xref ref-type="aff" rid="aff3">
137
+ <sup>3</sup>
138
+ </xref>
139
+ </contrib>
140
+ <contrib contrib-type="author" xlink:type="simple">
141
+ <name name-style="western">
142
+ <surname>He</surname>
143
+ <given-names>Kuifeng</given-names>
144
+ </name>
145
+ <xref ref-type="aff" rid="aff1">
146
+ <sup>1</sup>
147
+ </xref>
148
+ </contrib>
149
+ <contrib contrib-type="author" xlink:type="simple">
150
+ <name name-style="western">
151
+ <surname>Wang</surname>
152
+ <given-names>Haohao</given-names>
153
+ </name>
154
+ <xref ref-type="aff" rid="aff1">
155
+ <sup>1</sup>
156
+ </xref>
157
+ </contrib>
158
+ <contrib contrib-type="author" xlink:type="simple">
159
+ <name name-style="western">
160
+ <surname>Xu</surname>
161
+ <given-names>Zhenzhen</given-names>
162
+ </name>
163
+ <xref ref-type="aff" rid="aff1">
164
+ <sup>1</sup>
165
+ </xref>
166
+ </contrib>
167
+ <contrib contrib-type="author" xlink:type="simple">
168
+ <name name-style="western">
169
+ <surname>Teng</surname>
170
+ <given-names>Lisong</given-names>
171
+ </name>
172
+ <xref ref-type="aff" rid="aff1">
173
+ <sup>1</sup>
174
+ </xref>
175
+ <xref ref-type="corresp" rid="cor1">
176
+ <sup>*</sup>
177
+ </xref>
178
+ </contrib>
179
+ <contrib contrib-type="author" xlink:type="simple">
180
+ <name name-style="western">
181
+ <surname>Zhu</surname>
182
+ <given-names>Tieming</given-names>
183
+ </name>
184
+ <xref ref-type="aff" rid="aff2">
185
+ <sup>2</sup>
186
+ </xref>
187
+ <xref ref-type="corresp" rid="cor1">
188
+ <sup>*</sup>
189
+ </xref>
190
+ </contrib>
191
+ </contrib-group>
192
+ <aff id="aff1">
193
+ <label>1</label>
194
+ <addr-line>Department of Surgical Oncology, First Affiliated Hospital, College of Medicine, Zhejiang University, Hangzhou, Zhejiang, China</addr-line>
195
+ </aff>
196
+ <aff id="aff2">
197
+ <label>2</label>
198
+ <addr-line>Department of Surgery, Affiliated Zhuji Hospital, Wenzhou Medical College, Zhuji, Zhejiang, China</addr-line>
199
+ </aff>
200
+ <aff id="aff3">
201
+ <label>3</label>
202
+ <addr-line>Department of Surgical Oncology, Taizhou Hospital, Wenzhou Medical College, Taizhou, Zhejiang, China</addr-line>
203
+ </aff>
204
+ <aff id="aff4">
205
+ <label>4</label>
206
+ <addr-line>Cancer Chemotherapy Center, Zhejiang Provincial Cancer Hospital, Zhejiang University of Traditional and Chinese Medicine, Hangzhou, Zhejiang, China</addr-line>
207
+ </aff>
208
+ <contrib-group>
209
+ <contrib contrib-type="editor" xlink:type="simple">
210
+ <name name-style="western">
211
+ <surname>Welm</surname>
212
+ <given-names>Alana L.</given-names>
213
+ </name>
214
+ <role>Editor</role>
215
+ <xref ref-type="aff" rid="edit1"/>
216
+ </contrib>
217
+ </contrib-group>
218
+ <aff id="edit1">Huntsman Cancer Institute, University of Utah, United States of America</aff>
219
+ <author-notes>
220
+ <corresp id="cor1">* E-mail: <email xlink:type="simple">jinketao2001@zju.edu.cn</email> (LT); <email xlink:type="simple">doctm@163.com</email> (TZ)</corresp>
221
+ <fn fn-type="con">
222
+ <p>Conceived and designed the experiments: KJ LT TZ. Performed the experiments: KJ GL JZ HL NH KH. Analyzed the data: BC BX FC. Contributed reagents/materials/analysis tools: HW ZX. Wrote the paper: KJ.</p>
223
+ </fn>
224
+ <fn fn-type="conflict">
225
+ <p>The authors have declared that no competing interests exist.</p>
226
+ </fn>
227
+ </author-notes><pub-date pub-type="collection">
228
+ <year>2011</year>
229
+ </pub-date>
230
+ <pub-date pub-type="epub">
231
+ <day>2</day>
232
+ <month>12</month>
233
+ <year>2011</year>
234
+ </pub-date>
235
+ <volume>6</volume>
236
+ <issue>12</issue>
237
+ <elocation-id>e28384</elocation-id>
238
+ <history>
239
+ <date date-type="received">
240
+ <day>18</day>
241
+ <month>7</month>
242
+ <year>2011</year>
243
+ </date>
244
+ <date date-type="accepted">
245
+ <day>7</day>
246
+ <month>11</month>
247
+ <year>2011</year>
248
+ </date>
249
+ </history>
250
+ <!--===== Grouping copyright info into permissions =====-->
251
+ <permissions>
252
+ <copyright-year>2011</copyright-year>
253
+ <copyright-holder>Jin et al</copyright-holder>
254
+ <license>
255
+ <license-p>This is an open-access article distributed under the terms of the Creative Commons Attribution License, which permits unrestricted use, distribution, and reproduction in any medium, provided the original author and source are credited.</license-p>
256
+ </license>
257
+ </permissions>
258
+ <abstract>
259
+ <p>The lack of appropriate tumor models of primary tumors and corresponding metastases that can reliably predict for response to anticancer agents remains a major deficiency in the clinical practice of cancer therapy. It was the aim of our study to establish patient-derived tumor tissue (PDTT) xenograft models of colon carcinoma with lymphatic and hepatic metastases useful for testing of novel molecularly targeted agents. PDTT of primary colon carcinoma, lymphatic and hepatic metastases were used to create xenograft models. Hematoxylin and eosin staining, immunohistochemical staining, genome-wide gene expression analysis, pyrosequencing, qRT-PCR, and western blotting were used to determine the biological stability of the xenografts during serial transplantation compared with the original tumor tissues. Early passages of the PDTT xenograft models of primary colon carcinoma, lymphatic and hepatic metastases revealed a high degree of similarity with the original clinical tumor samples with regard to histology, immunohistochemistry, genes expression, and mutation status as well as mRNA expression. After we have ascertained that these xenografts models retained similar histopathological features and molecular signatures as the original tumors, drug sensitivities of the xenografts to a novel VEGF targeted agent, FP3 was evaluated. In this study, PDTT xenograft models of colon carcinoma with lymphatic and hepatic metastasis have been successfully established. They provide appropriate models for testing of novel molecularly targeted agents.</p>
260
+ </abstract>
261
+ <funding-group>
262
+ <funding-statement>This work was supported by the State Key Basic Research and Development Program of China (973 Program, Grant No. 2009CB521704), National High-tech Research &amp; Development Program of China (863 Program, Grant No. 2006AA02A245), National Natural Science Foundation of China (Grant No. 81000894) and Zhejiang Provincial Science and Technology Project (Grant No. 2009C13021). The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.</funding-statement>
263
+ </funding-group>
264
+ <counts>
265
+ <page-count count="13"/>
266
+ </counts>
267
+ </article-meta>
268
+ </front>
269
+ <body>
270
+ <sec id="s1">
271
+ <title>Introduction</title>
272
+ <p>Animal models have been used in front-line preclinical studies for predicting efficacy and possible toxicities of anticancer drugs in cancer patients <xref ref-type="bibr" rid="pone.0028384-Morton1">[1]</xref>. Advancing a laboratory candidate drug from preclinical testing into testing in phase II clinical trials is based on the assumption that cancer models used in the laboratory are clinically predictive <xref ref-type="bibr" rid="pone.0028384-VoskoglouNomikos1">[2]</xref>. One of the most serious obstacles confronting investigators involved in the development and assessment of new anticancer drugs is the failure of rodent tumor models to predict reliably as to whether a given drug will have prospective anticancer activity with acceptable toxicity when applied to humans. Current tumor models used for drug evaluation generally consist of implantation into immunodeficient mice of xenografts generated from well-established human cancer cell lines that have already adapted to in vitro growth. These models have been used extensively for decades for rapid screening of the anticancer drug efficacy <xref ref-type="bibr" rid="pone.0028384-Johnson1">[3]</xref>, <xref ref-type="bibr" rid="pone.0028384-Sausville1">[4]</xref>. Such models have proven useful for identifying cellular and molecular mechanisms underlying metastasis and for developing new therapeutics. However, limited effectiveness exists, which severely restrains the predictive power of such models assessing the responses of patients' tumors to anticancer drugs in the clinic. The highly anaplastic cancer cells cultivated in vitro represent the extreme derivates from highly advanced cancers and are not associated with original tumor stroma, which now has been recognized as a crucial factor in the pathogenesis of cancer metastasis. In recent years, various groups have initiated the development of more relevant models based on xenografting of primary human tumor tissue in immunodeficient mice. Such patient-derived tumor tissue (PDTT) xenograft models are mainly constructed by introducing advanced tumor cells into the subcutaneous graft site. These xenografts models retain similar morphology, architecture and molecular signatures as the original cancers and thus should be used for rapid screening of potential therapeutics.</p>
273
+ <p>In recent years, many studies have focused on the heterogeneity found in primary tumors and corresponding metastases with the consideration that evaluation of metastatic rather than primary sites could be of clinical relevance <xref ref-type="bibr" rid="pone.0028384-Jin1">[5]</xref>. Numerous reports have evaluated the heterogeneity in primary tumors and corresponding metastases in a range of solid tumors such as breast cancer <xref ref-type="bibr" rid="pone.0028384-Gong1">[6]</xref>, <xref ref-type="bibr" rid="pone.0028384-Gancberg1">[7]</xref>, <xref ref-type="bibr" rid="pone.0028384-Regitnig1">[8]</xref>, <xref ref-type="bibr" rid="pone.0028384-Bozzetti1">[9]</xref>, <xref ref-type="bibr" rid="pone.0028384-Tanner1">[10]</xref>, <xref ref-type="bibr" rid="pone.0028384-Tapia1">[11]</xref>, <xref ref-type="bibr" rid="pone.0028384-Akcakanat1">[12]</xref>, <xref ref-type="bibr" rid="pone.0028384-Wu1">[13]</xref>, colorectal cancer <xref ref-type="bibr" rid="pone.0028384-Baldus1">[14]</xref>, <xref ref-type="bibr" rid="pone.0028384-Molinari1">[15]</xref>, <xref ref-type="bibr" rid="pone.0028384-Scartozzi1">[16]</xref>, <xref ref-type="bibr" rid="pone.0028384-Scartozzi2">[17]</xref> and non-small cell lung cancer (NSCLC) <xref ref-type="bibr" rid="pone.0028384-Sasatomi1">[18]</xref>, <xref ref-type="bibr" rid="pone.0028384-Park1">[19]</xref>. The main purpose of investigating the heterogeneity found in primary tumors and corresponding metastases is to evaluate the effect of such heterogeneity on the efficacy of anticancer therapy and cancer patients' prognosis. The primary tumor and its corresponding metastases are different at the molecular marker expression or gene status levels and that these differences may affect the clinical outcome of anticancer therapy <xref ref-type="bibr" rid="pone.0028384-Li1">[20]</xref>. Monaco et al. suggested that the <italic>EGFR</italic> and <italic>KRAS</italic> status of primary lung carcinomas might not predict the status in the corresponding metastases. Their observation may have important implications for molecular testing for EGFR-targeted therapies <xref ref-type="bibr" rid="pone.0028384-Monaco1">[21]</xref>. A retrospective study investigated the role of PTEN loss, Akt phosphorylation and <italic>KRAS</italic> mutations in primary colorectal tumors and their corresponding metastases on the activity of cetuximab plus irinotecan <xref ref-type="bibr" rid="pone.0028384-Loupakis1">[22]</xref>. This study gave us direct evidence to reveal that the genetic heterogeneity in primary colorectal tumors and their corresponding metastases have different responses to EGFR-targeted therapy. On these considerations mentioned above, to establish the PDTT xenograft models of primary tumor and corresponding metastases for assessment of the response of both the primary tumor and the metastases to some novel drugs is extremely useful.</p>
274
+ <p>FP3 (also named as KH902 or KH903) is an engineered protein which contains the extracellular domain 2 of VEGF receptor 1 (Flt-1) and extracellular domain 3 and 4 of VEGF receptor 2 (Flk-1, KDR) fused to the Fc portion of human immunoglobulin G1 <xref ref-type="bibr" rid="pone.0028384-Teng1">[23]</xref>, <xref ref-type="bibr" rid="pone.0028384-Jin2">[24]</xref>. Previous studies indicated that FP3 had promise as a local antiangiogenic treatment of human CNV (choroidal neovascularization) -related AMD (age-related macular degeneration) <xref ref-type="bibr" rid="pone.0028384-Teng1">[23]</xref>, <xref ref-type="bibr" rid="pone.0028384-Zhang1">[25]</xref>, <xref ref-type="bibr" rid="pone.0028384-Zhang2">[26]</xref>, <xref ref-type="bibr" rid="pone.0028384-Zhang3">[27]</xref>. In subsequent studies, it was demonstrated that FP3 has an inhibitory efficacy in VEGF-mediated proliferation and migration of human umbilical vein endothelial cells, and in VEGF-mediated vessel sprouting of rat aortic ring <italic>in vitro</italic> <xref ref-type="bibr" rid="pone.0028384-Jin2">[24]</xref>. It was also demonstrated that FP3 has an antitumor effect in a NSCLC cell line (A549) xenograft model <xref ref-type="bibr" rid="pone.0028384-Jin2">[24]</xref> and a PDTT xenograft model of gastric carcinoma <xref ref-type="bibr" rid="pone.0028384-Jin3">[28]</xref> in nude mice.</p>
275
+ <p>It was the aim of our study to establish PDTT xenograft models of colon carcinoma with lymphatic and hepatic metastasis useful for testing of a novel molecularly targeted agent, FP3.</p>
276
+ </sec>
277
+ <sec id="s2" sec-type="materials|methods">
278
+ <title>Materials and Methods</title>
279
+ <sec id="s2a">
280
+ <title>Reagents and drugs</title>
281
+ <p>Anti-Akt, anti-ERK, anti-MAPK and anti-mTOR antibodies, and phosphorylation-specific antibodies against Akt (Ser<sup>308</sup> and Ser<sup>473</sup>), ERK (Thr<sup>202</sup>/Tyr<sup>204</sup>), MAPK (Thr<sup>180</sup>/Tyr<sup>182</sup>) and mTOR (Ser<sup>2448</sup>) were purchased from Cell Signaling Technology Inc. (Cell Signaling, Beverly, MA). The antibodies against cleaved-caspase-3, VEGFR-2, and PCNA were purchased from Cell Signaling Technology Inc. (Cell Signaling, Beverly, MA). The antibodies against CK-20 (human-specific) and CDX-2 (human-specific) were purchased from DAKO (Carpinteria, CA). The antibodies against VEGF (human-specific) and EGFR were purchased from Epitomics Inc. (Burlingame, CA). The antibody against platelet endothelial cell adhesion molecule-1 (PECAM-1, CD31) (rat monoclonal, clone MEC 13.3) was purchased from BD Pharmingen (San Diego, CA). The antibody against α-smooth muscle actin (α-SMA, rabbit polyclonal) was purchased from Abcam (Cambridge, UK). Fluorescent (Cy3- or FITC-conjuncted) secondary antibodies (goat anti-rat or anti-rabbit) were purchased from Jackson ImmunoResearch (West Grove, PA). The antibody against GAPDH was purchased from Santa Cruz Biotechnology, Inc. (Santa Cruz, CA). Horseradish peroxidase-conjugated secondary antibodies were purchased from Santa Cruz Biotechnology, Inc. (Santa Cruz, CA). Chemiluminescent detection system was purchased from Amersham Pharmacia Biotech (Arlington Heights, IL). RPMI 1640 medium, fetal bovine serum (FBS), penicillin, and streptomycin were purchased from Gibco (Grand Island, NY, USA). Isofluorane, diethyl ether, ketamine, and xylazine were purchased from Sigma (St. Louis, MO, USA). Bevacizumab (Avastin) was purchased from Roche, Inc. (Roche, USA). FP3 was kindly provided as a gift from Kanghong, Biotechnology Inc. (Konghong, Chengdu, China).</p>
282
+ </sec>
283
+ <sec id="s2b">
284
+ <title>Patient and tissue samples</title>
285
+ <p>Tumor specimens were obtained at initial surgery from a 40-year-old female colon carcinoma patient with lymphatic and hepatic metastases. Prior written informed consent was obtained from the patient and the study received ethics board approval at First Affiliated Hospital, College of Medicine, Zhejiang University. The patient had not received chemotherapy or radiation therapy before surgery. The histological type was determined according to WHO criteria. The tumor was diagnosed as mucinous adenocarcinoma (T3N2M1). The tumor samples of colon carcinoma with lymphatic and hepatic metastases were put into medium immediately after surgical resection under sterile conditions and transported without delay to the animal facility.</p>
286
+ </sec>
287
+ <sec id="s2c">
288
+ <title>Establishment of xenografts</title>
289
+ <p>Four- to six-week-old female BALB/c nude mice purchased from Slaccas (Slaccas Laboratory Animal, Shanghai, China) were housed in a barrier facility and acclimated to 12-h light-dark cycles for at least three days before use. The use of experimental animals adhered to the “Principles of Laboratory Animal Care” (NIH publication #85-23, revised in 1985). All experiments were approved by the Institutional Animal Care and Use Committee of Zhejiang University (approval ID: SYXK(ZHE)2005-0072). The method to establish the PDTT xenograft models of human colon carcinoma with lymphatic and hepatic metastases were followed as described previously <xref ref-type="bibr" rid="pone.0028384-Jin1">[5]</xref>, <xref ref-type="bibr" rid="pone.0028384-Jin3">[28]</xref>, <xref ref-type="bibr" rid="pone.0028384-Jin4">[29]</xref>, <xref ref-type="bibr" rid="pone.0028384-Jin5">[30]</xref>. Briefly, tumors were placed in RPMI 1640 medium supplemented with 20% FBS and 0.05% penicillin/streptomycin solution in an ice bath in the surgical site. Tumors were then transferred to a sterile Petri dish containing RPMI 1640 medium with supplements mentioned above. Thin slices of tumor were diced into 2×2×3 mm<sup>3</sup> pieces and washed thrice with RPMI 1640 with supplements mentioned above. Under anesthesia with isofluorane, tumors were implanted into 4- to 6-week-old female athymic nude mice by a small incision and subcutaneous pocket made in one side of the lower back in which one tumor piece is deposited in the pocket. While the pocket was still open, one drop of 100× penicillin/streptomycin solution was placed into the opening. Half of the rest of the tumors was cryopreserved in liquid nitrogen and the other half was immediately snap-frozen and stored at −80°C and processed for biological studies, such as genetic, genomic, mRNA expression and protein expression analyses. For each tumor, twenty mice were used. Growth of established tumor xenografts was monitored at least twice weekly by vernier caliper measurement of the length (a) and width (b) of tumor. Tumor volumes was calculated as (a×b<sup>2</sup>)/2. For the first week following implantation, a small bump would be visible where the tumor was inserted. At 14 to 22 weeks following implantation, a tumor began to appear at the site of implantation with 1000 to 1500 mm<sup>3</sup> in volume. At a size of about 1500 mm<sup>3</sup>, tumors were removed for serial transplantation. Tumor-bearing animals were anesthetized with diethyl ether and sacrificed by cervical dislocation. Animals were placed immediately in an ice water bath for 2 minutes. The mice were then placed in 75% ethanol for 2 minutes, and transferred to a laminar flow hood for dissection. Tumors were minced under sterile conditions and implanted in successive nude mice as described above. Tumors were passaged no more than 10 times. Following transplantation, tumors were allowed to grow to 200 to 500 mm<sup>3</sup> before initiation of treatment for drug evaluation. Numerous samples from early passages were stored in the tissue bank and cryopreserved in liquid nitrogen, and used for further experiments.</p>
290
+ </sec>
291
+ <sec id="s2d">
292
+ <title>Treatment protocol</title>
293
+ <p>Xenografts from this second mouse-to-mouse passage (the third generation, G3) were allowed to grow to a size of 200 mm<sup>3</sup>, at which time mice were randomized in the following three groups of treatment, with 10 mice in each group: (a) control (100 µl saline); (b) FP3, 15 mg/kg, i.v., twice per week; (c) Avastin (bevacizumab), 10 mg/kg, i.v., twice per week. Mice were treated during 21 days, monitored twice per week for signs of toxicity, and were weighed once a week. Tumor size was evaluated twice a week by caliper measurements using the following formula: tumor volume = (length×width<sup>2</sup>)/2. Relative tumor growth inhibition (TGI) was calculated by relative tumor growth of treated mice divided by relative tumor growth of control mice (T/C). Experiments were terminated on day 30.</p>
294
+ </sec>
295
+ <sec id="s2e">
296
+ <title>Histology and immunohistochemistry</title>
297
+ <p>Selected tumor specimen were fixed in 10% neutral-buffered formalin and embedded in paraffin. Five-micrometer sections were cut, dewaxed, and then rehydrated and stained with hematoxylin and eosin (H&amp;E) as described previously <xref ref-type="bibr" rid="pone.0028384-Huynh1">[31]</xref>, <xref ref-type="bibr" rid="pone.0028384-Wang1">[32]</xref>.</p>
298
+ <p>For immunohistochemical staining, five micromolar sections were cut, dewaxed, rehydrated, and subjected to antigen retrieval. After blocking endogenous peroxidase activity, the sections were incubated with the primary antibodies against CK-20 (1∶100), CDX-2 (1∶100), EGFR (1∶100), VEGF (1∶100) and PCNA (1∶100) (overnight at 4°C). Immunohistochemistry was performed using the streptavidin-biotin peroxidase complex method (Lab Vision, Fremont, CA). The slides were examined and pictures were taken using an Olympus BX60 (Olympus, Japan). Sections known to stain positively were incubated in each batch and negative controls were also prepared by replacing the primary antibody with preimmune sera.</p>
299
+ </sec>
300
+ <sec id="s2f">
301
+ <title>Fluorescent immunohistochemistry</title>
302
+ <p>Selected mice with similar tumor size were anesthetized with ketamine (87 mg/kg) plus xylazine (13 mg/kg) injected intramuscularly. The chest was opened rapidly, and the vasculature was perfused for 3 minutes at a pressure of 120 mmHg with fixative [4% paraformaldehyde in 0.1 mol/L phosphate-buffered saline (PBS), pH 7.4] from an 18-gauge cannula inserted into the aorta via an incision in the left ventricle. Blood and fixative exited through an opening in the right atrium. After the perfusion, the implanted tumor was removed and placed into fixative for 2 hours at 4°C. Specimens were then rinsed several times with PBS, infiltrated overnight with 30% sucrose, embedded in OCT medium and frozen for cryostat sectioning <xref ref-type="bibr" rid="pone.0028384-Mancuso1">[33]</xref>. Cryostat sections 8 to 10 µm in thickness were brought to room temperature, air dried overnight, then fixed in acetone for 10 min. Slides were allowed to air dry for 30 min and were washed three times for 5 min each in PBS. Samples were then incubated in 5% BSA in PBS for 30 min at room temperature to block nonspecific antibody binding. Next, the sections were incubated with two primary antibodies (CD31, 1∶100; and α-SMA, 1∶200) or VEGFR-2 (1∶150) overnight at room temperature in humidified chambers diluted in PBS. After several rinses with PBS, specimens were incubated for 1 hour at room temperature with fluorescent (Cy3- or FITC-conjuncted) secondary antibodies (goat anti-rat or goat anti-rabbit) diluted (1∶200) in PBS. Specimens were rinsed again with PBS, and mounted in Vectashield (Vector Laboratories, Burlingame, CA) <xref ref-type="bibr" rid="pone.0028384-Morikawa1">[34]</xref>, <xref ref-type="bibr" rid="pone.0028384-Baluk1">[35]</xref>. Tissue sections were examined and digitally photographed using a Zeiss Axiophot fluorescence microscope (Carl Zeiss, Thornwood, NY) equipped with single, dual, and triple fluorescence filters and a low-light, externally cooled, three-chip charge-coupled device (CCD) camera (480×640 pixel RGB-color images, CoolCam; SciMeasure Analytical Systems, Atlanta, GA) and saved as TIFF files.</p>
303
+ </sec>
304
+ <sec id="s2g">
305
+ <title>Genome-wide gene expression analysis</title>
306
+ <p>RNA was extracted from tumor specimens and from 2×2×2 mm<sup>3</sup> tumor xenograft samples (derived from different passages ranging from 1 to 3), which were taken from sacrificed animals. Samples were snap-frozen and stored in liquid nitrogen until use. Total RNA of homogenized tumor samples was prepared with Trizol RNA extraction reagent (Invitrogen) followed by purification using the RNeasy Mini Kit (Qiagen) according to the manufacturer's recommendations. A DNase I (Qiagen) digestion step was included to eliminate genomic DNA. The quality of the total RNA was checked for integrity using RNA LabChips on the Agilent Bioanalyzer 2100 (Agilent Technologies) and the concentration was measured on the Peqlab NanoDrop. Only RNA with a RNA integrity number larger than 6.5 was used for cDNA synthesis. The one-cycle eukaryotic target labeling assay from Affymetrix was used according to manufacturer's instructions and as previously described <xref ref-type="bibr" rid="pone.0028384-Fichtner1">[36]</xref>. Data analysis was performed as previously described <xref ref-type="bibr" rid="pone.0028384-Fichtner1">[36]</xref>.</p>
307
+ </sec>
308
+ <sec id="s2h">
309
+ <title>DNA extraction and mutation analysis</title>
310
+ <p>DNA was extracted from paraffin-embedded samples of colon carcinoma with lymphatic and hepatic metastases. For every tumor tissue, 10-µm sections were prepared, and an additional representative 2-µm section was deparaffinised, stained with haematoxylin and eosin, and analysed for detailed morphology. Regions of tumor tissue were marked, and this tissue was extracted with 0.2 M sodium hydroxide in 1 mM edetic acid and neutralised with 100 mM TRIS-TE (pH 6.5). After extraction, DNA was purified with Qiagen PCR purification kit (Qiagen, Hilden, Germany). <italic>KRAS</italic> gene in exon 1 was analysed at codons 12 and 13 with pyrosequencing using a previously described assay which has been shown to be of greater sensitivity <xref ref-type="bibr" rid="pone.0028384-Ogino1">[37]</xref>. <italic>BRAF</italic> gene in exon 15 at codon 600 and <italic>PIK3CA</italic> gene in exon 9 at codons 539, 542, 545 and 546 and exon 20 at codons 1043, 1044, 1047 and 1049 were analysed with pyrosequencing as previously described <xref ref-type="bibr" rid="pone.0028384-Baldus1">[14]</xref>.</p>
311
+ </sec>
312
+ <sec id="s2i">
313
+ <title>qRT-PCR</title>
314
+ <p>Total RNA was extracted from frozen tissues using TRIzol reagent according to the protocol provided by the manufacturer (Invitrogen, Carlsbad, CA). Total RNA was reverse-transcribed into single-strand complementary DNA (cDNA) using moloney-murine leukemia virus (M-MLV) reverse transcriptase (Promega, Madison, WI). Briefly, the RNA was denatured by heating for 5 min at 70°C, followed by rapid cooling on ice, and then used for reverse transcription (2 µg of total RNA, 25 U of RNase inhibitor, 0.5 mmol/L of each dNTP, 1.5 µmol/L reverse primer and 200 U of M-MLV reverse transcriptase in a total volume of 25 µl). For reverse transcription, tubes were incubated at 42°C for 60 min. The expression of a randomly selected set of genes, including dehydropyrimidine deshydrogenase (<italic>DPD</italic>), nucleotide excision repair-1 (<italic>ERCC-1</italic>), and thymidylate synthase (<italic>TS</italic>) in tissues in original tumors (G0) and tumors from the third generation (G3) was analyzed using a fluorescence-based real-time detection method (ABI PRISM 7700 Sequence Detection System [TaqMan]; Perkin-Elmer Applied Biosystems) as previously described <xref ref-type="bibr" rid="pone.0028384-Gibson1">[38]</xref>, <xref ref-type="bibr" rid="pone.0028384-Schneider1">[39]</xref>. Specific primer pairs and probes are listed in <xref ref-type="table" rid="pone-0028384-t001"><bold>Table 1</bold></xref>. The <italic>β</italic>-actin gene was used as an endogenous control for normalization. The qRT-PCR reaction was carried out in triplicate for each sample. The 25 µl PCR mixture was consisted of 1 µl of cDNA template, 1 µl each of sense and anti-sense primers, 0.75 µl of 5' FAM- and 3' TAMARA-labeled oligonucleotide probe, 2 µl of dNTP mixture, 5 µl of 5× reaction buffer, and 0.125 µl of Taq DNA polymerase. Cycling conditions were 50°C for 2 minutes, and 95°C for 10 minutes, followed by 46 cycles at 95°C for 15 seconds and 60°C for 1 minute.</p>
315
+ <table-wrap id="pone-0028384-t001" position="float"><object-id pub-id-type="doi">10.1371/journal.pone.0028384.t001</object-id><label>Table 1</label><caption>
316
+ <title>Sequences of primers and probes for qRT-PCR.</title>
317
+ </caption><!--===== Grouping alternate versions of objects =====--><alternatives><graphic id="pone-0028384-t001-1" mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.t001" xlink:type="simple"/><table>
318
+ <colgroup span="1">
319
+ <col align="left" span="1"/>
320
+ <col align="center" span="1"/>
321
+ </colgroup>
322
+ <thead>
323
+ <tr>
324
+ <td align="left" colspan="2" rowspan="1">Primer and probe sequences</td>
325
+ </tr>
326
+ </thead>
327
+ <tbody>
328
+ <tr>
329
+ <td align="left" colspan="2" rowspan="1">
330
+ <bold>DPD</bold>
331
+ </td>
332
+ </tr>
333
+ <tr>
334
+ <td align="left" colspan="1" rowspan="1">Forward primer</td>
335
+ <td align="left" colspan="1" rowspan="1">
336
+ <named-content content-type="gene" xlink:type="simple">5'- AGGACGCAAGGAGGGTTTG -3'</named-content>
337
+ </td>
338
+ </tr>
339
+ <tr>
340
+ <td align="left" colspan="1" rowspan="1">Reverse primer</td>
341
+ <td align="left" colspan="1" rowspan="1">
342
+ <named-content content-type="gene" xlink:type="simple">5'- GTCCGCCGAGTCCTTACTGA -3'</named-content>
343
+ </td>
344
+ </tr>
345
+ <tr>
346
+ <td align="left" colspan="1" rowspan="1">Probe</td>
347
+ <td align="left" colspan="1" rowspan="1">6FAM-<named-content content-type="gene" xlink:type="simple">5'- CAGTGCCTACAGTCTCGAGTCTGCCAGTG -3'</named-content>-TAMRA</td>
348
+ </tr>
349
+ <tr>
350
+ <td align="left" colspan="2" rowspan="1">
351
+ <bold>ERCC1</bold>
352
+ </td>
353
+ </tr>
354
+ <tr>
355
+ <td align="left" colspan="1" rowspan="1">Forward primer</td>
356
+ <td align="left" colspan="1" rowspan="1">
357
+ <named-content content-type="gene" xlink:type="simple">5'-GGGAATTTGGCGACGTAATTC-3'</named-content>
358
+ </td>
359
+ </tr>
360
+ <tr>
361
+ <td align="left" colspan="1" rowspan="1">Reverse primer</td>
362
+ <td align="left" colspan="1" rowspan="1">
363
+ <named-content content-type="gene" xlink:type="simple">5'-GCGGAGGCTGAGGAACAG-3'</named-content>
364
+ </td>
365
+ </tr>
366
+ <tr>
367
+ <td align="left" colspan="1" rowspan="1">Probe</td>
368
+ <td align="left" colspan="1" rowspan="1">6FAM-<named-content content-type="gene" xlink:type="simple">5'- CACAGGTGCTCTGGCCCAGCACATA -3'</named-content>-TAMRA</td>
369
+ </tr>
370
+ <tr>
371
+ <td align="left" colspan="2" rowspan="1">
372
+ <bold>TS</bold>
373
+ </td>
374
+ </tr>
375
+ <tr>
376
+ <td align="left" colspan="1" rowspan="1">Forward primer</td>
377
+ <td align="left" colspan="1" rowspan="1">
378
+ <named-content content-type="gene" xlink:type="simple">5'-GCCTCGGTGTGCCTTTCA-3'</named-content>
379
+ </td>
380
+ </tr>
381
+ <tr>
382
+ <td align="left" colspan="1" rowspan="1">Reverse primer</td>
383
+ <td align="left" colspan="1" rowspan="1">
384
+ <named-content content-type="gene" xlink:type="simple">5'-GGCTCGATGTGATTCAGGTAAATAT-3'</named-content>
385
+ </td>
386
+ </tr>
387
+ <tr>
388
+ <td align="left" colspan="1" rowspan="1">Probe</td>
389
+ <td align="left" colspan="1" rowspan="1">6FAM-<named-content content-type="gene" xlink:type="simple">5'-CACGGGCCTGAAGCCAGGTGACTTTATA-3'</named-content>-TAMRA</td>
390
+ </tr>
391
+ <tr>
392
+ <td align="left" colspan="2" rowspan="1">
393
+ <bold>
394
+ <italic>β</italic>
395
+ </bold>
396
+ <bold>-actin</bold>
397
+ </td>
398
+ </tr>
399
+ <tr>
400
+ <td align="left" colspan="1" rowspan="1">Forward primer</td>
401
+ <td align="left" colspan="1" rowspan="1">
402
+ <named-content content-type="gene" xlink:type="simple">5'-TGAGCGCGGCTACAGCTT-3'</named-content>
403
+ </td>
404
+ </tr>
405
+ <tr>
406
+ <td align="left" colspan="1" rowspan="1">Reverse primer</td>
407
+ <td align="left" colspan="1" rowspan="1">
408
+ <named-content content-type="gene" xlink:type="simple">5'-TCCTTAATGTCACGCACGATTT-3'</named-content>
409
+ </td>
410
+ </tr>
411
+ <tr>
412
+ <td align="left" colspan="1" rowspan="1">Probe</td>
413
+ <td align="left" colspan="1" rowspan="1">6FAM-<named-content content-type="gene" xlink:type="simple">5'-ACCACCACGGCCGAGCGG-3'</named-content>-TAMRA</td>
414
+ </tr>
415
+ </tbody>
416
+ </table></alternatives></table-wrap>
417
+ </sec>
418
+ <sec id="s2j">
419
+ <title>Western blotting</title>
420
+ <p>Protein expression profiles were analyzed by western blotting as previously described <xref ref-type="bibr" rid="pone.0028384-Huynh1">[31]</xref>, <xref ref-type="bibr" rid="pone.0028384-RubioViqueira1">[40]</xref>, <xref ref-type="bibr" rid="pone.0028384-PerezSoler1">[41]</xref>. Briefly, lysates for immunoblotting were prepared by adding lysis buffer [50 mM Tris-HCl (pH 7.4), 1% Nonidet P-40, 0.5% sodium deoxycholate, 150 mM NaCl, 0.02% sodium azide, and 0.1% SDS] containing protease and phosphatase inhibitors (Sigma, St. Louis, MO) to the tumor tissue homogenized in fluid nitrogen. After centrifugation at 15,000 rpm at 4°C for 10 min, the supernatants were collected, and the protein concentration was determined using Bio-Rad Protein Assay Kit (Bio-Rad, Hercules, CA). Protein extracts of tumor lysates (30 µg) were added to a loading buffer [10 mmol/L Tris-HCl (pH 6.8), 1% SDS, 25% glycerol, 0.1 mmol/L mercaptoethanol, and 0.03% bromophenol blue], boiled, and separated on 8% to 12% (w/v) polyacrylamide gels in the presence of SDS. Molecular weights of the immunoreactive proteins were estimated based on the relative migration with colored molecular weight protein markers (Amersham Pharmacia Biotech, Piscataway, NJ). After electrophoresis, the protein blots were electro-transferred to PVDF membranes (Millipore, Billerica, MA). Then, the membranes were blocked at room temperature with 5% nonfat milk in TBS [10 mmol/L Tris-HCl (pH 7.5), 0.5 mol/L NaCl, and 0.05% (v/v) Tween 20] buffer for 1 h. The primary antibodies were diluted at 1∶1,000 and the membranes were incubated with primary antibodies overnight at 4°C. The antibodies tested were anti-Akt, anti-ERK, anti-MAPK, anti-mTOR antibodies, anti-EGFR, anti-VEGF, anti-cleaved-caspase-3, anti-PCNA, and phosphorylation-specific antibodies against Akt (Ser<sup>308</sup> and Ser<sup>473</sup>), ERK (Thr<sup>202</sup>/Tyr<sup>204</sup>), MAPK (Thr<sup>180</sup>/Tyr<sup>182</sup>) and mTOR (Ser<sup>2448</sup>). The next day, the membranes were washed and incubated for 1 h at room temperature with rabbit immunoglobulin G-horseradish peroxidase-conjugated secondary antibodies (Santa Cruz Biotechnology), at a final dilution of 1∶5,000. After washing thrice with TBS, antibody binding was visualized using enhanced chemiluminescence detection system (SuperSignal West Pico, Pierce) as described by the manufacturer and autoradiography. To show equal protein loading, the blots were stripped and reprobed for GAPDH.</p>
421
+ </sec>
422
+ <sec id="s2k">
423
+ <title>Statistical analysis</title>
424
+ <p>Hierarchical clustering of all microarray experiments was done based on all probe sets (54,675 probe sets) represented on the HGU133Plus2.0 array (Affymetrix) with a quality <italic>p</italic>&lt;0.04 using positive correlation and complete linkage. Gene expression of primary tumors was compared with the median arrays of replicate tumors from each xenograft model in a paired <italic>t</italic> test. Drug sensitivity data are presented as mean ± SEM and analyzed by SPSS 16.0 software. Difference among mean of the groups is determined with one-way ANOVA. Comparison is considered to be statistically significant if <italic>p</italic>&lt;0.05.</p>
425
+ </sec>
426
+ </sec>
427
+ <sec id="s3">
428
+ <title>Results</title>
429
+ <sec id="s3a">
430
+ <title>Patient-derived tumor tissues of colon carcinoma and its corresponding lymphatic and hepatic metastases can be implanted efficiently into nude mice</title>
431
+ <p>To test whether patient-derived tumor tissues of primary colon carcinoma and its corresponding lymphatic and hepatic metastases can be engrafted in nude mice, we implanted small pieces of freshly tumor tissue into female athymic nude mice subcutaneously. After two to five months, tumors began to appear at the site of implantation with 1000 to 1500 mm<sup>3</sup> in volume, and xenografts were harvested for serial transplantation. The tumor-bearing rate and tumor growth rate of different generations of PDTT xenografts of primary colon carcinoma and its corresponding lymphatic and hepatic metastases were illustrated in <xref ref-type="table" rid="pone-0028384-t002"><bold>Table 2</bold></xref>.</p>
432
+ <table-wrap id="pone-0028384-t002" position="float">
433
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.t002</object-id>
434
+ <label>Table 2</label>
435
+ <caption>
436
+ <title>Tumor-bearing rate and tumor growth rate of the PDTT xenograft models.</title>
437
+ </caption>
438
+ <!--===== Grouping alternate versions of objects =====-->
439
+ <alternatives>
440
+ <graphic id="pone-0028384-t002-2" mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.t002" xlink:type="simple"/>
441
+ <table>
442
+ <colgroup span="1">
443
+ <col align="left" span="1"/>
444
+ <col align="center" span="1"/>
445
+ <col align="center" span="1"/>
446
+ <col align="center" span="1"/>
447
+ </colgroup>
448
+ <thead>
449
+ <tr>
450
+ <td align="left" colspan="4" rowspan="1">Tumor-bearing rate</td>
451
+ </tr>
452
+ <tr>
453
+ <td align="left" colspan="1" rowspan="1"/>
454
+ <td align="left" colspan="1" rowspan="1">G1 (n = 20)</td>
455
+ <td align="left" colspan="1" rowspan="1">G2 (n = 20)</td>
456
+ <td align="left" colspan="1" rowspan="1">G3 (n = 20)</td>
457
+ </tr>
458
+ </thead>
459
+ <tbody>
460
+ <tr>
461
+ <td align="left" colspan="1" rowspan="1">Primary colon carcinoma</td>
462
+ <td align="left" colspan="1" rowspan="1">60%</td>
463
+ <td align="left" colspan="1" rowspan="1">80%</td>
464
+ <td align="left" colspan="1" rowspan="1">100%</td>
465
+ </tr>
466
+ <tr>
467
+ <td align="left" colspan="1" rowspan="1">Colon carcinoma lymphatic metastasis</td>
468
+ <td align="left" colspan="1" rowspan="1">60%</td>
469
+ <td align="left" colspan="1" rowspan="1">80%</td>
470
+ <td align="left" colspan="1" rowspan="1">100%</td>
471
+ </tr>
472
+ <tr>
473
+ <td align="left" colspan="1" rowspan="1">Colon carcinoma hepatic metastasis</td>
474
+ <td align="left" colspan="1" rowspan="1">80%</td>
475
+ <td align="left" colspan="1" rowspan="1">100%</td>
476
+ <td align="left" colspan="1" rowspan="1">100%</td>
477
+ </tr>
478
+ </tbody>
479
+ </table>
480
+ <table>
481
+ <colgroup span="1">
482
+ <col align="left" span="1"/>
483
+ <col align="center" span="1"/>
484
+ <col align="center" span="1"/>
485
+ <col align="center" span="1"/>
486
+ </colgroup>
487
+ <thead>
488
+ <tr>
489
+ <td align="left" colspan="4" rowspan="1">Tumor growth rate <xref ref-type="table-fn" rid="nt102">a</xref></td>
490
+ </tr>
491
+ <tr>
492
+ <td align="left" colspan="1" rowspan="1"/>
493
+ <td align="left" colspan="1" rowspan="1">G1 (n = 10)</td>
494
+ <td align="left" colspan="1" rowspan="1">G2 (n = 10)</td>
495
+ <td align="left" colspan="1" rowspan="1">G3 (n = 10)</td>
496
+ </tr>
497
+ </thead>
498
+ <tbody>
499
+ <tr>
500
+ <td align="left" colspan="1" rowspan="1">Primary colon carcinoma</td>
501
+ <td align="left" colspan="1" rowspan="1">141±22.3 ds</td>
502
+ <td align="left" colspan="1" rowspan="1">93±11.0 ds</td>
503
+ <td align="left" colspan="1" rowspan="1">34±8.6 ds</td>
504
+ </tr>
505
+ <tr>
506
+ <td align="left" colspan="1" rowspan="1">Colon carcinoma lymphatic metastasis</td>
507
+ <td align="left" colspan="1" rowspan="1">111±23.6 ds</td>
508
+ <td align="left" colspan="1" rowspan="1">67±10.3 ds</td>
509
+ <td align="left" colspan="1" rowspan="1">30±7.2 ds</td>
510
+ </tr>
511
+ <tr>
512
+ <td align="left" colspan="1" rowspan="1">Colon carcinoma hepatic metastasis</td>
513
+ <td align="left" colspan="1" rowspan="1">83±13.2ds</td>
514
+ <td align="left" colspan="1" rowspan="1">46±8.1 ds</td>
515
+ <td align="left" colspan="1" rowspan="1">25±6.5 ds</td>
516
+ </tr>
517
+ </tbody>
518
+ </table>
519
+ </alternatives>
520
+ <table-wrap-foot>
521
+ <fn id="nt101">
522
+ <label/>
523
+ <p>Note:</p>
524
+ </fn>
525
+ <fn id="nt102">
526
+ <label>a</label>
527
+ <p>measured when tumor volume arrived 1000 mm<sup>3</sup>; G1, the first generation of xenograft; G2, the second generation of xenograft; G3, the third generation of xenograft; ds, days.</p>
528
+ </fn>
529
+ </table-wrap-foot>
530
+ </table-wrap>
531
+ </sec>
532
+ <sec id="s3b">
533
+ <title>Histological and molecular characterization of xenografts and comparison with original tumors</title>
534
+ <p>Using PDTT xenografts as models for preclinical anticancer drug development is based on the assumption that the xenografts would closely resemble the corresponding original tumors. For this purpose, H&amp;E staining, immunohistochemical staining, genome-wide gene expression analysis, pyrosequencing, qRT-PCR and western blotting were used to determine the biological stability of the xenograft during serial transplantation compared with the original tumor tissues. In this study, CK-20 and CDX-2 were used as markers for determining the lymphatic and hepatic metastases with a colon carcinoma primary. Immunohistochemical staining showed a positive expression of CK-20 and CDX-2 in the metastases (<xref ref-type="fig" rid="pone-0028384-g001"><bold>Fig. 1</bold></xref>), which ascertained lymphatic and hepatic metastases with an epithelial origin. Histological examination of the H&amp;E sections showed that the PDTT xenografts were adenocarcinoma with features similar to the original surgical specimens. <xref ref-type="fig" rid="pone-0028384-g002"><bold>Fig. 2</bold></xref> shows the morphology of the original tumors (G0) of primary colon carcinoma with lymphatic and hepatic metastases and their third generation (G3) implants in nude mice. There were no significant morphological differences between the tumor resected from the patient and the initial successful implants. The explanted tumor pieces also showed similar VEGF and EGFR expressions compared to the corresponding original tumors (<xref ref-type="fig" rid="pone-0028384-g003"><bold>Fig. 3</bold></xref><bold>,</bold><xref ref-type="fig" rid="pone-0028384-g004"><bold>4</bold></xref>).</p>
535
+ <fig id="pone-0028384-g001" position="float">
536
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g001</object-id>
537
+ <label>Figure 1</label>
538
+ <caption>
539
+ <title>Expression of CDX-2 and CK-20 in the tumor tissues of lymphatic (A and B) and hepatic metastasis (C and D).</title>
540
+ <p>Original magnifications, x200.</p>
541
+ </caption>
542
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g001" xlink:type="simple"/>
543
+ </fig>
544
+ <fig id="pone-0028384-g002" position="float">
545
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g002</object-id>
546
+ <label>Figure 2</label>
547
+ <caption>
548
+ <title>Representative H&amp;E stained tissues of primary colon carcinoma (A and B) and its corresponding lymphatic (C and D) and hepatic (E and F) metastases and their early-generation of xenograft tumors.</title>
549
+ <p>G0, the primary tumors; G3, the third generation of xenografts. Original magnifications, ×100.</p>
550
+ </caption>
551
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g002" xlink:type="simple"/>
552
+ </fig>
553
+ <fig id="pone-0028384-g003" position="float">
554
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g003</object-id>
555
+ <label>Figure 3</label>
556
+ <caption>
557
+ <title>VEGF immunohistochemical staining of primary tumor tissues of primary colon carcinoma (A and B) and its corresponding lymphatic (C and D) and hepatic (E and F) metastases and their early-generation xenograft tumor tissues.</title>
558
+ <p>G0, the primary tumors; G3, the third generation of xenografts. Original magnifications, ×100.</p>
559
+ </caption>
560
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g003" xlink:type="simple"/>
561
+ </fig>
562
+ <fig id="pone-0028384-g004" position="float">
563
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g004</object-id>
564
+ <label>Figure 4</label>
565
+ <caption>
566
+ <title>EGFR immunohistochemical staining of primary tumor tissues of primary colon carcinoma (A and B) and its corresponding lymphatic (C and D) and hepatic (E and F) metastases and their early-generation xenograft tumor tissues.</title>
567
+ <p>G0, the primary tumors; G3, the third generation of xenografts. Original magnifications, ×100.</p>
568
+ </caption>
569
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g004" xlink:type="simple"/>
570
+ </fig>
571
+ <p>When using the PDTT xenograft models for testing of the anticancer agents, especially molecularly targeted agents, detailed characterization of the molecules is indispensable. For this purpose, GeneChip HGU133Plus2.0 expression arrays (Affymetrix) was used to determine the status of the genome-wide gene expression of the xenograft models, pyrosequencing was used to determine the mutation status of some selected genes of the xenograft models, qRT-PCR was used to determine the status of some randomized selected genes of the xenograft models, western blotting was used to determine the expression of some randomized selected signaling pathway proteins of the xenograft models during serial transplantation compared with the original tumor tissues. Our results showed that early passages of the PDTT xenograft models of primary colon carcinoma with lymphatic and hepatic metastases revealed a high degree of similarity with the original clinical tumor samples with regard to <italic>KRAS</italic>, <italic>BRAF</italic>, <italic>EGFR</italic>, and <italic>PIK3CA</italic> mutation status (<bold>see <xref ref-type="supplementary-material" rid="pone.0028384.s001">Fig. S1</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s002">S2</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s003">S3</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s004">S4</xref></bold>) as well as mRNA expression (data not shown). With regards to the western blotting analysis of ‘randomized selected signaling proteins’, early passages of the PDTT xenograft models of colon carcinoma lymphatic and hepatic metastases revealed a high degree of similarity with the original clinical tumor samples though these phenomena did not exist between original clinical tumor sample of primary colon cancer and its xenografts (<xref ref-type="fig" rid="pone-0028384-g005"><bold>Fig. 5</bold></xref>). Based on the results of genome-wide gene expression analysis, we calculated the correlation coefficient between primary cancer and the xenograft derived thereof. The correlation coefficient ranged between 0.988 and 0.991 (0.991 between primary colon carcinoma and its xenograft, 0.989 between lymphatic metastasis and its xenograft, and 0.988 between hepatic metastasis and its xenograft) indicating a high degree of similarity between the primary cancer and the corresponding xenograft model. A paired <italic>t</italic> test between the primary tumors and xenografts revealed limited differentially expressed probe sets. Clustering based on these probe sets showed a limited distinction between primary tumors and xenografts (<bold><xref ref-type="supplementary-material" rid="pone.0028384.s005">Table S1</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s006">S2</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s007">S3</xref>, </bold><xref ref-type="fig" rid="pone-0028384-g006"><bold>Fig. 6</bold></xref>).</p>
572
+ <fig id="pone-0028384-g005" position="float">
573
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g005</object-id>
574
+ <label>Figure 5</label>
575
+ <caption>
576
+ <title>Exemplified immunoblotting data of the proteins Akt, pAkt (Ser<sup>308</sup> and Ser<sup>473</sup>), ERK, pERK (Thr<sup>202</sup>/Tyr<sup>204</sup>), MAPK, pMAPK (Thr<sup>180</sup>/Tyr<sup>182</sup>), mTOR, pmTOR (Ser<sup>2448</sup>), EGFR, VEGF, Casepase-3, PCNA and GAPDH (as loading control) of primary colon carcinoma and its corresponding lymphatic and hepatic metastases and their early-generation xenograft tumor tissues.</title>
577
+ <p>G0, the primary tumors; G3, the third generation of xenografts.</p>
578
+ </caption>
579
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g005" xlink:type="simple"/>
580
+ </fig>
581
+ <fig id="pone-0028384-g006" position="float">
582
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g006</object-id>
583
+ <label>Figure 6</label>
584
+ <caption>
585
+ <title>Gene expression profiling of patient-derived tumor tissues and corresponding xenografts.</title>
586
+ <p>A, hierarchical clustering based on 140 probe sets differentially expressed between primary colon carcinoma and its xenograft. B, hierarchical clustering based on 70 probe sets differentially expressed between colon carcinoma lymphatic metastasis and its xenograft. C, hierarchical clustering based on 145 probe sets differentially expressed between colon carcinoma hepatic metastasis and its xenograft. PCT, primary colon carcinoma. PCT Xe, primary colon carcinoma xenograft. Lym, colon carcinoma lymphatic metastasis. Lym Xe, colon carcinoma lymphatic metastasis xenograft. Hep, colon carcinoma hepatic metastasis. Hep Xe, colon carcinoma hepatic metastasis xenograft.</p>
587
+ </caption>
588
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g006" xlink:type="simple"/>
589
+ </fig>
590
+ </sec>
591
+ <sec id="s3c">
592
+ <title>PDTT xenograft models of colon carcinoma and its corresponding lymphatic and hepatic metastases for assessment of a novel VEGF targeted agent</title>
593
+ <p>Our results indicated that during sequential passage, the PDTT xenograft models retained their similarity to the corresponding original tumors in morphology, architecture and molecular signatures thus could be used for rapid screening of potential therapeutics. To improve confidence of a novel VEGF blocker during its early preclinical studies allowing for a faster decision is one of purposes of using these xenograft models. To explore the value of FP3 as an antitumor therapeutic and to compare it to other effective agents targeting the VEGF pathway, we evaluated its ability to block the growth of these xenograft models.</p>
594
+ <p>After implantation, tumors were allowed to grow for 10 days, forming large retroperitoneal tumors &gt;100 mm<sup>3</sup>. Injections of FP3 (15 mg/kg body weight), Avastin (10 mg/kg body weight) or saline were then given i.v. twice per week for 21 days, after which the animals were killed and tumors excised and measured. No body weight-related toxicity was found in each group. FP3 significantly inhibited the growth of xenografts of primary colon carcinoma and its lymphatic and hepatic metastases in nude mice (<xref ref-type="fig" rid="pone-0028384-g007"><bold>Fig. 7</bold></xref>), and resembled the well-defined and generally accepted antitumor activity of Avastin <xref ref-type="bibr" rid="pone.0028384-Teng2">[42]</xref>.</p>
595
+ <fig id="pone-0028384-g007" position="float">
596
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g007</object-id>
597
+ <label>Figure 7</label>
598
+ <caption>
599
+ <title>Response curve of FP3 and Avastin in the PDTT xenograft models of primary colon carcinoma (A), lymphatic metastasis (B), and hepatic metastasis (C).</title>
600
+ <p>Ten mice per group were treated with the corresponding agent according to <xref ref-type="sec" rid="s2">Materials and Methods</xref>. Data shown are means ± SEM. The differences between control tumor volumes, FP3-treated, and Avastin-treated tumor volumes were analyzed by using one-way ANOVA. <sup>***</sup> <italic>p</italic>&lt;0.001, versus control. Experiments were repeated at least two times with similar results.</p>
601
+ </caption>
602
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g007" xlink:type="simple"/>
603
+ </fig>
604
+ <p>To evaluate the effects of FP3 on tumor-associated angiogenesis, selected tumors from the above studies were sectioned and immunostained with antibodies to CD31 and α-SMA, so that the vasculature could be visualized (<xref ref-type="fig" rid="pone-0028384-g008"><bold>Fig. 8</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g009"><bold>9</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g010"><bold>10</bold></xref>). This analysis revealed that vasculature was nearly absent in FP3-treated xenografts. FP3 (treatment for 21 days) almost completely blocked tumor-associated angiogenesis, with the stunted tumors being largely avascular (<xref ref-type="fig" rid="pone-0028384-g008"><bold>Fig. 8: B, E, and H</bold></xref><bold>; </bold><xref ref-type="fig" rid="pone-0028384-g009"><bold>Fig. 9: B, E, and H</bold></xref><bold>; </bold><xref ref-type="fig" rid="pone-0028384-g010"><bold>Fig. 10: B, E, and H</bold></xref>). In contrast to the FP3-treated tumors, control tumors in saline-treated mice not only were much larger but also had a very high vascular density (<xref ref-type="fig" rid="pone-0028384-g008"><bold>Fig. 8: A, D, and G</bold></xref><bold>; </bold><xref ref-type="fig" rid="pone-0028384-g009"><bold>Fig. 9: A, D, and G</bold></xref><bold>; </bold><xref ref-type="fig" rid="pone-0028384-g010"><bold>Fig. 10: A, D, and G</bold></xref>). These results indicate that FP3 administration reduces xenograft size and concurrently causes decreased microvessel growth.</p>
605
+ <fig id="pone-0028384-g008" position="float">
606
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g008</object-id>
607
+ <label>Figure 8</label>
608
+ <caption>
609
+ <title>FP3 decreased vascular structure in the xenograft model of primary colon carcinoma.</title>
610
+ <p>Vasculature was examined by angiography with immunostaining for endothelial cells (using anti-CD31 antibody; bar = 100 µm), and pericytes (using anti-α-SMA antibody; bar = 100 µm). There was a paucity of vessels identified in FP3-treated tumors.</p>
611
+ </caption>
612
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g008" xlink:type="simple"/>
613
+ </fig>
614
+ <fig id="pone-0028384-g009" position="float">
615
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g009</object-id>
616
+ <label>Figure 9</label>
617
+ <caption>
618
+ <title>FP3 decreased vascular structure in the xenograft model of colon carcinoma lymphatic metastasis.</title>
619
+ <p>Vasculature was examined by angiography with immunostaining for endothelial cells (using anti-CD31 antibody; bar = 100 µm), and pericytes (using anti-α-SMA antibody; bar = 100 µm). There was a paucity of vessels identified in FP3-treated tumors.</p>
620
+ </caption>
621
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g009" xlink:type="simple"/>
622
+ </fig>
623
+ <fig id="pone-0028384-g010" position="float">
624
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g010</object-id>
625
+ <label>Figure 10</label>
626
+ <caption>
627
+ <title>FP3 decreased vascular structure in the xenograft model of colon carcinoma hepatic metastasis.</title>
628
+ <p>Vasculature was examined by angiography with immunostaining for endothelial cells (using anti-CD31 antibody; bar = 100 µm), and pericytes (using anti-α-SMA antibody; bar = 100 µm). There was a paucity of vessels identified in FP3-treated tumors.</p>
629
+ </caption>
630
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g010" xlink:type="simple"/>
631
+ </fig>
632
+ <p>We next measured cell proliferation in the treated tumors. By immunohistochemical staining, we found that VEGF expression (<xref ref-type="fig" rid="pone-0028384-g011"><bold>Fig. 11</bold></xref>) and PCNA expression (<xref ref-type="fig" rid="pone-0028384-g012"><bold>Fig. 12</bold></xref>) in FP3- and Avastin-treated tumors were significantly suppressed. However, EGFR expression was not significantly different between any of the treatment groups and saline-treated controls (<xref ref-type="fig" rid="pone-0028384-g013"><bold>Fig. 13</bold></xref>), suggesting that levels of EGFR are unlikely to be altered by the treatments.</p>
633
+ <fig id="pone-0028384-g011" position="float">
634
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g011</object-id>
635
+ <label>Figure 11</label>
636
+ <caption>
637
+ <title>Effects of FP3 and Avastin on the expression of VEGF in the PDTT xenograft models of primary colon carcinoma (A–C), lymphatic metastasis (D–F), and hepatic metastasis (G–I).</title>
638
+ <p>Original magnifications, ×100.</p>
639
+ </caption>
640
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g011" xlink:type="simple"/>
641
+ </fig>
642
+ <fig id="pone-0028384-g012" position="float">
643
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g012</object-id>
644
+ <label>Figure 12</label>
645
+ <caption>
646
+ <title>Effects of FP3 and Avastin on the expression of PCNA in the PDTT xenograft models of primary colon carcinoma (A–C), lymphatic metastasis (D–F), and hepatic metastasis (G–I).</title>
647
+ <p>Original magnifications, ×100.</p>
648
+ </caption>
649
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g012" xlink:type="simple"/>
650
+ </fig>
651
+ <fig id="pone-0028384-g013" position="float">
652
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g013</object-id>
653
+ <label>Figure 13</label>
654
+ <caption>
655
+ <title>Effects of FP3 and Avastin on the expression of EGFR in the PDTT xenograft models of primary colon carcinoma (A–C), lymphatic metastasis (D–F), and hepatic metastasis (G–I).</title>
656
+ <p>Original magnifications, ×100.</p>
657
+ </caption>
658
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g013" xlink:type="simple"/>
659
+ </fig>
660
+ <p>Because inhibition of VEGF signaling can decrease VEGFR-2 expression in certain types of blood vessels <xref ref-type="bibr" rid="pone.0028384-Huang1">[43]</xref>, <xref ref-type="bibr" rid="pone.0028384-Baffert1">[44]</xref>, we asked whether VEGF/VEGFR blockade decreased receptor expression in our tumor models. Treatment of the xenograft models with FP3 for 21 days, decreased expression of VEGFR-2, a marker for growing vasculature (<xref ref-type="fig" rid="pone-0028384-g014"><bold>Fig. 14</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g015"><bold>15</bold></xref>). These results were consistent with the disappearance of endothelial cells expressing this receptor (<xref ref-type="fig" rid="pone-0028384-g008"><bold>Fig. 8</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g009"><bold>9</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g010"><bold>10</bold></xref>).</p>
661
+ <fig id="pone-0028384-g014" position="float">
662
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g014</object-id>
663
+ <label>Figure 14</label>
664
+ <caption>
665
+ <title>Effects of FP3 and Avastin on the expression of VEGFR-2 in the PDTT xenograft models of primary colon carcinoma (A–C), lymphatic metastasis (D–F), and hepatic metastasis (G–I).</title>
666
+ <p>Original magnifications, ×100.</p>
667
+ </caption>
668
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g014" xlink:type="simple"/>
669
+ </fig>
670
+ <fig id="pone-0028384-g015" position="float">
671
+ <object-id pub-id-type="doi">10.1371/journal.pone.0028384.g015</object-id>
672
+ <label>Figure 15</label>
673
+ <caption>
674
+ <title>Western blotting analysis showing the effects of FP3 and Avastin on the expression of VEGFR-2 protein in the PDTT xenograft models of primary colon carcinoma (A), lymphatic metastasis (B), and hepatic metastasis (C).</title>
675
+ </caption>
676
+ <graphic mimetype="image" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.g015" xlink:type="simple"/>
677
+ </fig>
678
+ </sec>
679
+ </sec>
680
+ <sec id="s4">
681
+ <title>Discussion</title>
682
+ <p>Rodent tumor models currently being used and which include transgenic tumor models, and those generated by planting human tumor cell lines subcutaneously in immunodeficient mice, do not sufficiently represent clinical cancer characteristics, especially with regard to metastasis and drug sensitivity <xref ref-type="bibr" rid="pone.0028384-Jin4">[29]</xref>. The increasingly used PDTT xenografts models implanted subcutaneously or in subrenal capsule in immunodeficient mice provide a more accurate reflection of human tumor biological characteristics than tumor cell lines. The ability to passage patients' fresh tumor tissues into large numbers of immunodeficient mice provides possibilities for better preclinical testing of new therapies for the treatment and better outcome for cancer.</p>
683
+ <p>In our study, we successfully established the PDTT xenograft models of primary colon carcinoma and its corresponding lymphatic and hepatic metastases. One of vital questions relating to PDTT xenografts is whether tumor passage in the experimental mice alters the phenotype of primary cancer cells. When developing the anticancer agents, especially molecularly targeted agents, detailed characterisation of the molecules is indispensable. If there are fundamental changes in tumors from before to after their engrafting, the model may not do well in reflecting the features of human cancers. Therefore, the practicability of this model as a screening platform for new drug development for this disease will be limited. Similarly, the value of this model as a tool to individualise patient treatment would be limited <xref ref-type="bibr" rid="pone.0028384-RubioViqueira1">[40]</xref>. Using PDTT xenografts as models for preclinical anticancer drug development is based on the assumption that the xenografts would closely resemble the corresponding original tumors. In our study, we firstly demonstrated that early passages of the PDTT xenograft models of primary colon carcinoma, lymphatic and hepatic metastases revealed a high degree of similarity with the original clinical tumor sample with regard to histology (<xref ref-type="fig" rid="pone-0028384-g002"><bold>Fig. 2</bold></xref>), immunohistochemistry (<xref ref-type="fig" rid="pone-0028384-g003"><bold>Fig. 3</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g004"><bold>4</bold></xref>), mutation status (<bold>see <xref ref-type="supplementary-material" rid="pone.0028384.s001">Fig. S1</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s002">S2</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s003">S3</xref>, <xref ref-type="supplementary-material" rid="pone.0028384.s004">S4</xref></bold>), mRNA expression (data not shown) as well as genes expression (<xref ref-type="fig" rid="pone-0028384-g006"><bold>Fig. 6</bold></xref>). As these xenografts models retain similar histopathological features and molecular signatures as the original tumors, they could be used for rapid screening of potential therapeutics not only on the primary tumor, but also on its corresponding metastases.</p>
684
+ <p>One of the general applications of the PDTT xenograft models of primary colon carcinoma and its corresponding lymphatic and hepatic metastases is that they can be used as an in vivo screening tool to test the response of both the primary tumor and the metastases to some certain novel drugs. Furthermore, these models may help us to clear whether the primary tumors and corresponding metastases have different response to the same anticancer drugs. In this study, the PDTT xenograft models of primary colon carcinoma and its corresponding lymphatic and hepatic metastases were used for assessment of a novel VEGF targeted agent, FP3. As shown in results, FP3 significantly inhibited the growth of xenografts of primary colon carcinoma and its corresponding lymphatic and hepatic metastases and concurrently caused inhibition of tumor vessels growth dramatically [<xref ref-type="fig" rid="pone-0028384-g007"><bold>Fig. 7</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g008"><bold>8</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g009"><bold>9</bold></xref><bold>, </bold><xref ref-type="fig" rid="pone-0028384-g010"><bold>10</bold></xref>]. These results coincide with our previous works <xref ref-type="bibr" rid="pone.0028384-Jin2">[24]</xref>, <xref ref-type="bibr" rid="pone.0028384-Jin3">[28]</xref>.</p>
685
+ <p>In conclusion, our work successfully established the PDTT xenograft models of colon carcinoma with lymphatic and hepatic metastasis useful for testing of a novel molecularly anti-VEGF targeted agent, FP3. Early passages of the PDTT xenograft models of primary colon carcinoma, lymphatic and hepatic metastases revealed a high degree of similarity with the original clinical tumor samples. They provide appropriate models for testing of novel molecularly targeted agents. These models may also help us to clear whether the primary tumors and corresponding metastases have different response to the same anticancer drugs.</p>
686
+ </sec>
687
+ <sec id="s5">
688
+ <title>Supporting Information</title>
689
+ <supplementary-material id="pone.0028384.s001" mimetype="image/tiff" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s001" xlink:type="simple">
690
+ <label>Figure S1</label>
691
+ <caption>
692
+ <p><bold>Mutation analysis by pyrosequencing.</bold> Sequence data of <italic>KRAS</italic> gene in exon 1 at codons 12 and 13 of primary tumor tissues and their early-generation xenograft models tumor tissues. A, standard wild-type sample. Tumor tissues from surgical specimens of primary colon carcinoma (B) and its corresponding lymphatic metastasis (D) and hepatic metastasis (F). Tumor tissues from the third generation of xenograft models of primary colon carcinoma (C) and its corresponding lymphatic metastasis (E) and hepatic metastasis (G).</p>
693
+ <p>(TIF)</p>
694
+ </caption>
695
+ </supplementary-material>
696
+ <supplementary-material id="pone.0028384.s002" mimetype="image/tiff" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s002" xlink:type="simple">
697
+ <label>Figure S2</label>
698
+ <caption>
699
+ <p><bold>Mutation analysis by pyrosequencing.</bold> Sequence data of <italic>BRAF</italic> gene in exon 15 at codon 600 of primary tumor tissues and their early-generation xenograft models tumor tissues. A, standard wild-type sample. Tumor tissues from surgical specimens of primary colon carcinoma (B) and its corresponding lymphatic metastasis (D) and hepatic metastasis (F). Tumor tissues from the third generation of xenograft models of primary colon carcinoma (C) and its corresponding lymphatic metastasis (E) and hepatic metastasis (G).</p>
700
+ <p>(TIF)</p>
701
+ </caption>
702
+ </supplementary-material>
703
+ <supplementary-material id="pone.0028384.s003" mimetype="image/tiff" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s003" xlink:type="simple">
704
+ <label>Figure S3</label>
705
+ <caption>
706
+ <p><bold>Mutation analysis by pyrosequencing.</bold> Sequence data of <italic>PIK3CA</italic> gene in exon 9 at codons 539, 542, 545 and 546 of primary tumor tissues and their early-generation xenograft models tumor tissues. A, standard wild-type sample. Tumor tissues from surgical specimens of primary colon carcinoma (B) and its corresponding lymphatic metastasis (D) and hepatic metastasis (F). Tumor tissues from the third generation of xenograft models of primary colon carcinoma (C) and its corresponding lymphatic metastasis (E) and hepatic metastasis (G).</p>
707
+ <p>(TIF)</p>
708
+ </caption>
709
+ </supplementary-material>
710
+ <supplementary-material id="pone.0028384.s004" mimetype="image/tiff" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s004" xlink:type="simple">
711
+ <label>Figure S4</label>
712
+ <caption>
713
+ <p><bold>Mutation analysis by pyrosequencing.</bold> Sequence data of <italic>PIK3CA</italic> gene in exon 20 at codons 1043, 1044, 1047 and 1049 of primary tumor tissues and their early-generation xenograft models tumor tissues. A, standard wild-type sample. Tumor tissues from surgical specimens of primary colon carcinoma (B) and its corresponding lymphatic metastasis (D) and hepatic metastasis (F). Tumor tissues from the third generation of xenograft models of primary colon carcinoma (C) and its corresponding lymphatic metastasis (E) and hepatic metastasis (G).</p>
714
+ <p>(TIF)</p>
715
+ </caption>
716
+ </supplementary-material>
717
+ <supplementary-material id="pone.0028384.s005" mimetype="application/msword" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s005" xlink:type="simple">
718
+ <label>Table S1</label>
719
+ <caption>
720
+ <p>
721
+ <bold>Genes differentially expressed in patient primary colon cancer specimens and its xenograft.</bold>
722
+ </p>
723
+ <p>(DOC)</p>
724
+ </caption>
725
+ </supplementary-material>
726
+ <supplementary-material id="pone.0028384.s006" mimetype="application/msword" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s006" xlink:type="simple">
727
+ <label>Table S2</label>
728
+ <caption>
729
+ <p>
730
+ <bold>Genes differentially expressed in patient colon cancer lymphatic metastasis specimens and its xenograft.</bold>
731
+ </p>
732
+ <p>(DOC)</p>
733
+ </caption>
734
+ </supplementary-material>
735
+ <supplementary-material id="pone.0028384.s007" mimetype="application/msword" position="float" xlink:href="info:doi/10.1371/journal.pone.0028384.s007" xlink:type="simple">
736
+ <label>Table S3</label>
737
+ <caption>
738
+ <p>
739
+ <bold>Genes differentially expressed in patient colon cancer hepatic metastasis specimens and its xenograft.</bold>
740
+ </p>
741
+ <p>(DOC)</p>
742
+ </caption>
743
+ </supplementary-material>
744
+ </sec>
745
+ </body>
746
+ <back>
747
+ <ref-list>
748
+ <title>References</title>
749
+ <ref id="pone.0028384-Morton1">
750
+ <label>1</label>
751
+ <element-citation publication-type="journal" xlink:type="simple">
752
+ <person-group person-group-type="author">
753
+ <name name-style="western"><surname>Morton</surname><given-names>CL</given-names></name>
754
+ <name name-style="western"><surname>Houghton</surname><given-names>PJ</given-names></name>
755
+ </person-group>
756
+ <year>2007</year>
757
+ <article-title>Establishment of human tumor xenografts in immunodeficient mice.</article-title>
758
+ <source>Nat Protoc</source>
759
+ <volume>2</volume>
760
+ <fpage>247</fpage>
761
+ <lpage>250</lpage>
762
+ </element-citation>
763
+ </ref>
764
+ <ref id="pone.0028384-VoskoglouNomikos1">
765
+ <label>2</label>
766
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Voskoglou-Nomikos</surname><given-names>T</given-names></name><name name-style="western"><surname>Pater</surname><given-names>JL</given-names></name><name name-style="western"><surname>Seymour</surname><given-names>L</given-names></name></person-group> <year>2003</year> <article-title>Clinical predictive value of the in vitro cell line, human xenograft, and mouse allograft preclinical cancer models.</article-title> <source>Clin Cancer Res</source> <volume>9</volume> <fpage>4227</fpage> <lpage>4239</lpage> </element-citation>
767
+ </ref>
768
+ <ref id="pone.0028384-Johnson1">
769
+ <label>3</label>
770
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Johnson</surname><given-names>JI</given-names></name><name name-style="western"><surname>Decker</surname><given-names>S</given-names></name><name name-style="western"><surname>Zaharevitz</surname><given-names>D</given-names></name><name name-style="western"><surname>Rubinstein</surname><given-names>LV</given-names></name><name name-style="western"><surname>Venditti</surname><given-names>JM</given-names></name><etal/></person-group> <year>2001</year> <article-title>Relationships between drug activity in NCI preclinical in vitro and in vivo models and early clinical trials.</article-title> <source>Br J Cancer</source> <volume>84</volume> <fpage>1424</fpage> <lpage>1431</lpage> </element-citation>
771
+ </ref>
772
+ <ref id="pone.0028384-Sausville1">
773
+ <label>4</label>
774
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Sausville</surname><given-names>EA</given-names></name><name name-style="western"><surname>Burger</surname><given-names>AM</given-names></name></person-group> <year>2006</year> <article-title>Contributions of human tumor xenografts to anticancer drug development.</article-title> <source>Cancer Res</source> <volume>66</volume> <fpage>3351</fpage> <lpage>3354</lpage> </element-citation>
775
+ </ref>
776
+ <ref id="pone.0028384-Jin1">
777
+ <label>5</label>
778
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>He</surname><given-names>K</given-names></name><name name-style="western"><surname>Teng</surname><given-names>F</given-names></name><name name-style="western"><surname>Han</surname><given-names>N</given-names></name><name name-style="western"><surname>Li</surname><given-names>G</given-names></name><etal/></person-group> <year>2011</year> <article-title>Heterogeneity in primary tumors and corresponding metastases: could it provide us with any hints to personalize cancer therapy?</article-title> <source>Pers Med</source> <volume>8</volume> <fpage>175</fpage> <lpage>182</lpage> </element-citation>
779
+ </ref>
780
+ <ref id="pone.0028384-Gong1">
781
+ <label>6</label>
782
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Gong</surname><given-names>Y</given-names></name><name name-style="western"><surname>Booser</surname><given-names>DJ</given-names></name><name name-style="western"><surname>Sneige</surname><given-names>N</given-names></name></person-group> <year>2005</year> <article-title>Comparison of HER-2 status determined by fluorescence in situ hybridization in primary and metastatic breast carcinoma.</article-title> <source>Cancer</source> <volume>103</volume> <fpage>1763</fpage> <lpage>1769</lpage> </element-citation>
783
+ </ref>
784
+ <ref id="pone.0028384-Gancberg1">
785
+ <label>7</label>
786
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Gancberg</surname><given-names>D</given-names></name><name name-style="western"><surname>Di Leo</surname><given-names>A</given-names></name><name name-style="western"><surname>Cardoso</surname><given-names>F</given-names></name><name name-style="western"><surname>Rouas</surname><given-names>G</given-names></name><name name-style="western"><surname>Pedrocchi</surname><given-names>M</given-names></name><etal/></person-group> <year>2002</year> <article-title>Comparison of HER-2 status between primary breast cancer and corresponding distant metastatic sites.</article-title> <source>Ann Oncol</source> <volume>13</volume> <fpage>1036</fpage> <lpage>1043</lpage> </element-citation>
787
+ </ref>
788
+ <ref id="pone.0028384-Regitnig1">
789
+ <label>8</label>
790
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Regitnig</surname><given-names>P</given-names></name><name name-style="western"><surname>Schippinger</surname><given-names>W</given-names></name><name name-style="western"><surname>Lindbauer</surname><given-names>M</given-names></name><name name-style="western"><surname>Samonigg</surname><given-names>H</given-names></name><name name-style="western"><surname>Lax</surname><given-names>SF</given-names></name></person-group> <year>2004</year> <article-title>Change of HER-2/neu status in a subset of distant metastases from breast carcinomas.</article-title> <source>J Pathol</source> <volume>203</volume> <fpage>918</fpage> <lpage>926</lpage> </element-citation>
791
+ </ref>
792
+ <ref id="pone.0028384-Bozzetti1">
793
+ <label>9</label>
794
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Bozzetti</surname><given-names>C</given-names></name><name name-style="western"><surname>Personeni</surname><given-names>N</given-names></name><name name-style="western"><surname>Nizzoli</surname><given-names>R</given-names></name><name name-style="western"><surname>Guazzi</surname><given-names>A</given-names></name><name name-style="western"><surname>Flora</surname><given-names>M</given-names></name><etal/></person-group> <year>2003</year> <article-title>HER-2/neu amplification by fluorescence in situ hybridization in cytologic samples from distant metastatic sites of breast carcinoma.</article-title> <source>Cancer</source> <volume>99</volume> <fpage>310</fpage> <lpage>315</lpage> </element-citation>
795
+ </ref>
796
+ <ref id="pone.0028384-Tanner1">
797
+ <label>10</label>
798
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Tanner</surname><given-names>M</given-names></name><name name-style="western"><surname>Järvinen</surname><given-names>P</given-names></name><name name-style="western"><surname>Isola</surname><given-names>J</given-names></name></person-group> <year>2001</year> <article-title>Amplification of HER-2/neu and topoisomerase IIalpha in primary and metastatic breast cancer.</article-title> <source>Cancer Res</source> <volume>61</volume> <fpage>5345</fpage> <lpage>5348</lpage> </element-citation>
799
+ </ref>
800
+ <ref id="pone.0028384-Tapia1">
801
+ <label>11</label>
802
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Tapia</surname><given-names>C</given-names></name><name name-style="western"><surname>Savic</surname><given-names>S</given-names></name><name name-style="western"><surname>Wagner</surname><given-names>U</given-names></name><name name-style="western"><surname>Schönegg</surname><given-names>R</given-names></name><name name-style="western"><surname>Novotny</surname><given-names>H</given-names></name><etal/></person-group> <year>2007</year> <article-title>HER2 gene status in primary breast cancers and matched distant metastases.</article-title> <source>Breast Cancer Res</source> <volume>9</volume> <fpage>R31</fpage> </element-citation>
803
+ </ref>
804
+ <ref id="pone.0028384-Akcakanat1">
805
+ <label>12</label>
806
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Akcakanat</surname><given-names>A</given-names></name><name name-style="western"><surname>Sahin</surname><given-names>A</given-names></name><name name-style="western"><surname>Shaye</surname><given-names>AN</given-names></name><name name-style="western"><surname>Velasco</surname><given-names>MA</given-names></name><name name-style="western"><surname>Meric-Bernstam</surname><given-names>F</given-names></name></person-group> <year>2008</year> <article-title>Comparison of Akt/mTOR signaling in primary breast tumors and matched distant metastases.</article-title> <source>Cancer</source> <volume>112</volume> <fpage>2352</fpage> <lpage>2358</lpage> </element-citation>
807
+ </ref>
808
+ <ref id="pone.0028384-Wu1">
809
+ <label>13</label>
810
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Wu</surname><given-names>JM</given-names></name><name name-style="western"><surname>Fackler</surname><given-names>MJ</given-names></name><name name-style="western"><surname>Halushka</surname><given-names>MK</given-names></name><name name-style="western"><surname>Molavi</surname><given-names>DW</given-names></name><name name-style="western"><surname>Taylor</surname><given-names>ME</given-names></name><etal/></person-group> <year>2008</year> <article-title>Heterogeneity of breast cancer metastases: comparison of therapeutic target expression and promoter methylation between primary tumors and their multifocal metastases.</article-title> <source>Clin Cancer Res</source> <volume>14</volume> <fpage>1938</fpage> <lpage>1946</lpage> </element-citation>
811
+ </ref>
812
+ <ref id="pone.0028384-Baldus1">
813
+ <label>14</label>
814
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Baldus</surname><given-names>SE</given-names></name><name name-style="western"><surname>Schaefer</surname><given-names>KL</given-names></name><name name-style="western"><surname>Engers</surname><given-names>R</given-names></name><name name-style="western"><surname>Hartleb</surname><given-names>D</given-names></name><name name-style="western"><surname>Stoecklein</surname><given-names>NH</given-names></name><etal/></person-group> <year>2010</year> <article-title>Prevalence and heterogeneity of KRAS, BRAF, and PIK3CA mutations in primary colorectal adenocarcinomas and their corresponding metastases.</article-title> <source>Clin Cancer Res</source> <volume>16</volume> <fpage>790</fpage> <lpage>799</lpage> </element-citation>
815
+ </ref>
816
+ <ref id="pone.0028384-Molinari1">
817
+ <label>15</label>
818
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Molinari</surname><given-names>F</given-names></name><name name-style="western"><surname>Martin</surname><given-names>V</given-names></name><name name-style="western"><surname>Saletti</surname><given-names>P</given-names></name><name name-style="western"><surname>De Dosso</surname><given-names>S</given-names></name><name name-style="western"><surname>Spitale</surname><given-names>A</given-names></name><etal/></person-group> <year>2009</year> <article-title>Differing deregulation of EGFR and downstream proteins in primary colorectal cancer and related metastatic sites may be clinically relevant.</article-title> <source>Br J Cancer</source> <volume>100</volume> <fpage>1087</fpage> <lpage>1094</lpage> </element-citation>
819
+ </ref>
820
+ <ref id="pone.0028384-Scartozzi1">
821
+ <label>16</label>
822
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Scartozzi</surname><given-names>M</given-names></name><name name-style="western"><surname>Bearzi</surname><given-names>I</given-names></name><name name-style="western"><surname>Berardi</surname><given-names>R</given-names></name><name name-style="western"><surname>Mandolesi</surname><given-names>A</given-names></name><name name-style="western"><surname>Fabris</surname><given-names>G</given-names></name><etal/></person-group> <year>2004</year> <article-title>Epidermal growth factor receptor (EGFR) status in primary colorectal tumors does not correlate with EGFR expression in related metastatic sites: implications for treatment with EGFR-targeted monoclonal antibodies.</article-title> <source>J Clin Oncol</source> <volume>22</volume> <fpage>4772</fpage> <lpage>4778</lpage> </element-citation>
823
+ </ref>
824
+ <ref id="pone.0028384-Scartozzi2">
825
+ <label>17</label>
826
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Scartozzi</surname><given-names>M</given-names></name><name name-style="western"><surname>Bearzi</surname><given-names>I</given-names></name><name name-style="western"><surname>Berardi</surname><given-names>R</given-names></name><name name-style="western"><surname>Mandolesi</surname><given-names>A</given-names></name><name name-style="western"><surname>Pierantoni</surname><given-names>C</given-names></name><etal/></person-group> <year>2007</year> <article-title>Epidermal growth factor receptor (EGFR) downstream signalling pathway in primary colorectal tumours and related metastatic sites: optimising EGFR-targeted treatment options.</article-title> <source>Br J Cancer</source> <volume>97</volume> <fpage>92</fpage> <lpage>97</lpage> </element-citation>
827
+ </ref>
828
+ <ref id="pone.0028384-Sasatomi1">
829
+ <label>18</label>
830
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Sasatomi</surname><given-names>E</given-names></name><name name-style="western"><surname>Finkelstein</surname><given-names>SD</given-names></name><name name-style="western"><surname>Woods</surname><given-names>JD</given-names></name><name name-style="western"><surname>Bakker</surname><given-names>A</given-names></name><name name-style="western"><surname>Swalsky</surname><given-names>PA</given-names></name><etal/></person-group> <year>2002</year> <article-title>Comparison of accumulated allele loss between primary tumor and lymph node metastasis in stage II non-small cell lung carcinoma: implications for the timing of lymph node metastasis and prognostic value.</article-title> <source>Cancer Res</source> <volume>62</volume> <fpage>2681</fpage> <lpage>2689</lpage> </element-citation>
831
+ </ref>
832
+ <ref id="pone.0028384-Park1">
833
+ <label>19</label>
834
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Park</surname><given-names>S</given-names></name><name name-style="western"><surname>Holmes-Tisch</surname><given-names>AJ</given-names></name><name name-style="western"><surname>Cho</surname><given-names>EY</given-names></name><name name-style="western"><surname>Shim</surname><given-names>YM</given-names></name><name name-style="western"><surname>Kim</surname><given-names>J</given-names></name><etal/></person-group> <year>2009</year> <article-title>Discordance of molecular biomarkers associated with epidermal growth factor receptor pathway between primary tumors and lymph node metastasis in non-small cell lung cancer.</article-title> <source>J Thorac Oncol</source> <volume>4</volume> <fpage>809</fpage> <lpage>815</lpage> </element-citation>
835
+ </ref>
836
+ <ref id="pone.0028384-Li1">
837
+ <label>20</label>
838
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Li</surname><given-names>Z</given-names></name><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>Lan</surname><given-names>H</given-names></name><name name-style="western"><surname>Teng</surname><given-names>L</given-names></name></person-group> <year>2011</year> <article-title>Heterogeneity in primary colorectal cancer and its corresponding metastases: a potential reason of EGFR-targeted therapy failure?</article-title> <source>Hepatogastroenterology</source> <volume>58</volume> <fpage>411</fpage> <lpage>416</lpage> </element-citation>
839
+ </ref>
840
+ <ref id="pone.0028384-Monaco1">
841
+ <label>21</label>
842
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Monaco</surname><given-names>SE</given-names></name><name name-style="western"><surname>Nikiforova</surname><given-names>MN</given-names></name><name name-style="western"><surname>Cieply</surname><given-names>K</given-names></name><name name-style="western"><surname>Teot</surname><given-names>LA</given-names></name><name name-style="western"><surname>Khalbuss</surname><given-names>WE</given-names></name><etal/></person-group> <year>2010</year> <article-title>A comparison of EGFR and KRAS status in primary lung carcinoma and matched metastases.</article-title> <source>Hum Pathol</source> <volume>41</volume> <fpage>94</fpage> <lpage>102</lpage> </element-citation>
843
+ </ref>
844
+ <ref id="pone.0028384-Loupakis1">
845
+ <label>22</label>
846
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Loupakis</surname><given-names>F</given-names></name><name name-style="western"><surname>Pollina</surname><given-names>L</given-names></name><name name-style="western"><surname>Stasi</surname><given-names>I</given-names></name><name name-style="western"><surname>Ruzzo</surname><given-names>A</given-names></name><name name-style="western"><surname>Scartozzi</surname><given-names>M</given-names></name><etal/></person-group> <year>2009</year> <article-title>PTEN expression and KRAS mutations on primary tumors and metastases in the prediction of benefit from cetuximab plus irinotecan for patients with metastatic colorectal cancer.</article-title> <source>J Clin Oncol</source> <volume>27</volume> <fpage>2622</fpage> <lpage>2629</lpage> </element-citation>
847
+ </ref>
848
+ <ref id="pone.0028384-Teng1">
849
+ <label>23</label>
850
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Teng</surname><given-names>LS</given-names></name><name name-style="western"><surname>Jin</surname><given-names>KT</given-names></name><name name-style="western"><surname>He</surname><given-names>KF</given-names></name><name name-style="western"><surname>Wang</surname><given-names>HH</given-names></name><name name-style="western"><surname>Cao</surname><given-names>J</given-names></name><etal/></person-group> <year>2010</year> <article-title>Advances in combination of antiangiogenic agents targeting VEGF-binding and conventional chemotherapy and radiation for cancer treatment.</article-title> <source>J Chin Med Assoc</source> <volume>73</volume> <fpage>281</fpage> <lpage>288</lpage> </element-citation>
851
+ </ref>
852
+ <ref id="pone.0028384-Jin2">
853
+ <label>24</label>
854
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>He</surname><given-names>K</given-names></name><name name-style="western"><surname>Teng</surname><given-names>F</given-names></name><name name-style="western"><surname>Li</surname><given-names>G</given-names></name><name name-style="western"><surname>Wang</surname><given-names>H</given-names></name><etal/></person-group> <year>2011</year> <article-title>FP3: a novel VEGF blocker with antiangiogenic effects in vitro and antitumor effects in vivo.</article-title> <source>Clin Transl Oncol</source> <comment>In press</comment> </element-citation>
855
+ </ref>
856
+ <ref id="pone.0028384-Zhang1">
857
+ <label>25</label>
858
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Zhang</surname><given-names>M</given-names></name><name name-style="western"><surname>Zhang</surname><given-names>J</given-names></name><name name-style="western"><surname>Yan</surname><given-names>M</given-names></name><name name-style="western"><surname>Li</surname><given-names>H</given-names></name><name name-style="western"><surname>Yang</surname><given-names>C</given-names></name><etal/></person-group> <year>2008</year> <article-title>Recombinant anti-vascular endothelial growth factor fusion protein efficiently suppresses choridal neovasularization in monkeys.</article-title> <source>Mol Vis</source> <volume>14</volume> <fpage>37</fpage> <lpage>49</lpage> </element-citation>
859
+ </ref>
860
+ <ref id="pone.0028384-Zhang2">
861
+ <label>26</label>
862
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Zhang</surname><given-names>M</given-names></name><name name-style="western"><surname>Yu</surname><given-names>D</given-names></name><name name-style="western"><surname>Yang</surname><given-names>C</given-names></name><name name-style="western"><surname>Xia</surname><given-names>Q</given-names></name><name name-style="western"><surname>Li</surname><given-names>W</given-names></name><etal/></person-group> <year>2009</year> <article-title>The pharmacology study of a new recombinant human VEGF receptor-fc fusion protein on experimental choroidal neovascularization.</article-title> <source>Pharm Res</source> <volume>26</volume> <fpage>204</fpage> <lpage>210</lpage> </element-citation>
863
+ </ref>
864
+ <ref id="pone.0028384-Zhang3">
865
+ <label>27</label>
866
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Zhang</surname><given-names>M</given-names></name><name name-style="western"><surname>Zhang</surname><given-names>J</given-names></name><name name-style="western"><surname>Yan</surname><given-names>M</given-names></name><name name-style="western"><surname>Luo</surname><given-names>D</given-names></name><name name-style="western"><surname>Zhu</surname><given-names>W</given-names></name><etal/></person-group> <year>2011</year> <article-title>A phase 1 study of KH902, a vascular endothelial growth factor receptor decoy, for exudative age-related macular degeneration.</article-title> <source>Ophthalmology</source> <volume>118</volume> <fpage>672</fpage> <lpage>678</lpage> </element-citation>
867
+ </ref>
868
+ <ref id="pone.0028384-Jin3">
869
+ <label>28</label>
870
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>He</surname><given-names>K</given-names></name><name name-style="western"><surname>Han</surname><given-names>N</given-names></name><name name-style="western"><surname>Li</surname><given-names>G</given-names></name><name name-style="western"><surname>Wang</surname><given-names>H</given-names></name><etal/></person-group> <year>2011</year> <article-title>Establishment of a PDTT xenograft model of gastric carcinoma and its application in personalized therapeutic regimen selection.</article-title> <source>Hepatogastroenterology</source> <volume>58</volume> <issue>110-111</issue> <comment>Epub Ahead of Print. DOI 10.5754/hge11136</comment> </element-citation>
871
+ </ref>
872
+ <ref id="pone.0028384-Jin4">
873
+ <label>29</label>
874
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>Teng</surname><given-names>L</given-names></name><name name-style="western"><surname>Shen</surname><given-names>Y</given-names></name><name name-style="western"><surname>He</surname><given-names>K</given-names></name><name name-style="western"><surname>Xu</surname><given-names>Z</given-names></name><etal/></person-group> <year>2010</year> <article-title>Patient-derived human tumour tissue xenografts in immunodeficient mice: a systematic review.</article-title> <source>Clin Transl Oncol</source> <volume>12</volume> <fpage>473</fpage> <lpage>480</lpage> </element-citation>
875
+ </ref>
876
+ <ref id="pone.0028384-Jin5">
877
+ <label>30</label>
878
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Jin</surname><given-names>K</given-names></name><name name-style="western"><surname>He</surname><given-names>K</given-names></name><name name-style="western"><surname>Li</surname><given-names>G</given-names></name><name name-style="western"><surname>Teng</surname><given-names>L</given-names></name></person-group> <year>2010</year> <article-title>Personalized cancer therapy using a patient-derived tumor tissue xenograft model: a translational field worthy of exploring further?</article-title> <source>Pers Med</source> <volume>7</volume> <fpage>597</fpage> <lpage>606</lpage> </element-citation>
879
+ </ref>
880
+ <ref id="pone.0028384-Huynh1">
881
+ <label>31</label>
882
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Huynh</surname><given-names>H</given-names></name><name name-style="western"><surname>Chow</surname><given-names>PK</given-names></name><name name-style="western"><surname>Ooi</surname><given-names>LL</given-names></name><name name-style="western"><surname>Soo</surname><given-names>KC</given-names></name></person-group> <year>2002</year> <article-title>A possible role for insulin-like growth factor-binding protein-3 autocrine/paracrine loops in controlling hepatocellular carcinoma cell proliferation.</article-title> <source>Cell Growth Differ</source> <volume>13</volume> <fpage>115</fpage> <lpage>122</lpage> </element-citation>
883
+ </ref>
884
+ <ref id="pone.0028384-Wang1">
885
+ <label>32</label>
886
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Wang</surname><given-names>Y</given-names></name><name name-style="western"><surname>Xue</surname><given-names>H</given-names></name><name name-style="western"><surname>Cutz</surname><given-names>JC</given-names></name><name name-style="western"><surname>Bayani</surname><given-names>J</given-names></name><name name-style="western"><surname>Mawji</surname><given-names>NR</given-names></name><etal/></person-group> <year>2005</year> <article-title>An orthotopic metastatic prostate cancer model in SCID mice via grafting of a transplantable human prostate tumor line.</article-title> <source>Lab Invest</source> <volume>85</volume> <fpage>1392</fpage> <lpage>1404</lpage> </element-citation>
887
+ </ref>
888
+ <ref id="pone.0028384-Mancuso1">
889
+ <label>33</label>
890
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Mancuso</surname><given-names>MR</given-names></name><name name-style="western"><surname>Davis</surname><given-names>R</given-names></name><name name-style="western"><surname>Norberg</surname><given-names>SM</given-names></name><name name-style="western"><surname>O'Brien</surname><given-names>S</given-names></name><name name-style="western"><surname>Sennino</surname><given-names>B</given-names></name><etal/></person-group> <year>2006</year> <article-title>Rapid vascular regrowth in tumors after reversal of VEGF inhibition.</article-title> <source>J Clin Invest</source> <volume>116</volume> <fpage>2610</fpage> <lpage>2621</lpage> </element-citation>
891
+ </ref>
892
+ <ref id="pone.0028384-Morikawa1">
893
+ <label>34</label>
894
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Morikawa</surname><given-names>S</given-names></name><name name-style="western"><surname>Baluk</surname><given-names>P</given-names></name><name name-style="western"><surname>Kaidoh</surname><given-names>T</given-names></name><name name-style="western"><surname>Haskell</surname><given-names>A</given-names></name><name name-style="western"><surname>Jain</surname><given-names>RK</given-names></name><etal/></person-group> <year>2002</year> <article-title>Abnormalities in pericytes on blood vessels and endothelial sprouts in tumors.</article-title> <source>Am J Pathol</source> <volume>160</volume> <fpage>985</fpage> <lpage>1000</lpage> </element-citation>
895
+ </ref>
896
+ <ref id="pone.0028384-Baluk1">
897
+ <label>35</label>
898
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Baluk</surname><given-names>P</given-names></name><name name-style="western"><surname>Morikawa</surname><given-names>S</given-names></name><name name-style="western"><surname>Haskell</surname><given-names>A</given-names></name><name name-style="western"><surname>Mancuso</surname><given-names>M</given-names></name><name name-style="western"><surname>McDonald</surname><given-names>DM</given-names></name></person-group> <year>2003</year> <article-title>Abnormalities of basement membrane on blood vessels and endothelial sprouts in tumors.</article-title> <source>Am J Pathol</source> <volume>163</volume> <fpage>1801</fpage> <lpage>1815</lpage> </element-citation>
899
+ </ref>
900
+ <ref id="pone.0028384-Fichtner1">
901
+ <label>36</label>
902
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Fichtner</surname><given-names>I</given-names></name><name name-style="western"><surname>Rolff</surname><given-names>J</given-names></name><name name-style="western"><surname>Soong</surname><given-names>R</given-names></name><name name-style="western"><surname>Hoffmann</surname><given-names>J</given-names></name><name name-style="western"><surname>Hammer</surname><given-names>S</given-names></name><etal/></person-group> <year>2008</year> <article-title>Establishment of patient-derived non-small cell lung cancer xenografts as models for the identification of predictive biomarkers.</article-title> <source>Clin Cancer Res</source> <volume>14</volume> <fpage>6456</fpage> <lpage>6468</lpage> </element-citation>
903
+ </ref>
904
+ <ref id="pone.0028384-Ogino1">
905
+ <label>37</label>
906
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Ogino</surname><given-names>S</given-names></name><name name-style="western"><surname>Kawasaki</surname><given-names>T</given-names></name><name name-style="western"><surname>Brahmandam</surname><given-names>M</given-names></name><name name-style="western"><surname>Yan</surname><given-names>L</given-names></name><name name-style="western"><surname>Cantor</surname><given-names>M</given-names></name><etal/></person-group> <year>2005</year> <article-title>Sensitive sequencing method for KRAS mutation detection by Pyrosequencing.</article-title> <source>J Mol Diagn</source> <volume>7</volume> <fpage>413</fpage> <lpage>421</lpage> </element-citation>
907
+ </ref>
908
+ <ref id="pone.0028384-Gibson1">
909
+ <label>38</label>
910
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Gibson</surname><given-names>UE</given-names></name><name name-style="western"><surname>Heid</surname><given-names>CA</given-names></name><name name-style="western"><surname>Williams</surname><given-names>PM</given-names></name></person-group> <year>1996</year> <article-title>A novel method for real time quantitative RT-PCR.</article-title> <source>Genome Res</source> <volume>6</volume> <fpage>995</fpage> <lpage>1001</lpage> </element-citation>
911
+ </ref>
912
+ <ref id="pone.0028384-Schneider1">
913
+ <label>39</label>
914
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Schneider</surname><given-names>S</given-names></name><name name-style="western"><surname>Uchida</surname><given-names>K</given-names></name><name name-style="western"><surname>Brabender</surname><given-names>J</given-names></name><name name-style="western"><surname>Baldus</surname><given-names>SE</given-names></name><name name-style="western"><surname>Yochim</surname><given-names>J</given-names></name><etal/></person-group> <year>2005</year> <article-title>Downregulation of TS, DPD, ERCC1, GST-Pi, EGFR, and HER2 gene expression after neoadjuvant three-modality treatment in patients with esophageal cancer.</article-title> <source>J Am Coll Surg</source> <volume>200</volume> <fpage>336</fpage> <lpage>344</lpage> </element-citation>
915
+ </ref>
916
+ <ref id="pone.0028384-RubioViqueira1">
917
+ <label>40</label>
918
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Rubio-Viqueira</surname><given-names>B</given-names></name><name name-style="western"><surname>Jimeno</surname><given-names>A</given-names></name><name name-style="western"><surname>Cusatis</surname><given-names>G</given-names></name><name name-style="western"><surname>Zhang</surname><given-names>X</given-names></name><name name-style="western"><surname>Iacobuzio-Donahue</surname><given-names>C</given-names></name><etal/></person-group> <year>2006</year> <article-title>An in vivo platform for translational drug development in pancreatic cancer.</article-title> <source>Clin Cancer Res</source> <volume>12</volume> <fpage>4652</fpage> <lpage>4661</lpage> </element-citation>
919
+ </ref>
920
+ <ref id="pone.0028384-PerezSoler1">
921
+ <label>41</label>
922
+ <element-citation publication-type="journal" xlink:type="simple">
923
+ <person-group person-group-type="author">
924
+ <name name-style="western">
925
+ <surname>Perez-Soler</surname>
926
+ <given-names>R</given-names>
927
+ </name>
928
+ <name name-style="western">
929
+ <surname>Kemp</surname>
930
+ <given-names>B</given-names>
931
+ </name>
932
+ <name name-style="western">
933
+ <surname>Wu</surname>
934
+ <given-names>QP</given-names>
935
+ </name>
936
+ <name name-style="western">
937
+ <surname>Mao</surname>
938
+ <given-names>L</given-names>
939
+ </name>
940
+ <name name-style="western">
941
+ <surname>Gomez</surname>
942
+ <given-names>J</given-names>
943
+ </name>
944
+ <etal/>
945
+ </person-group>
946
+ <year>2000</year>
947
+ <article-title>Response and determinants of sensitivity to paclitaxel in human non-small cell lung cancer tumors heterotransplanted in nude mice.</article-title>
948
+ <source>Clin Cancer Res</source>
949
+ <volume>6</volume>
950
+ <fpage>4932</fpage>
951
+ <lpage>4938</lpage>
952
+ </element-citation>
953
+ </ref>
954
+ <ref id="pone.0028384-Teng2">
955
+ <label>42</label>
956
+ <element-citation publication-type="journal" xlink:type="simple">
957
+ <person-group person-group-type="author">
958
+ <name name-style="western"><surname>Teng</surname><given-names>LS</given-names></name>
959
+ <name name-style="western"><surname>Jin</surname><given-names>KT</given-names></name>
960
+ <name name-style="western"><surname>He</surname><given-names>KF</given-names></name>
961
+ <name name-style="western"><surname>Wang</surname><given-names>HH</given-names></name>
962
+ <name name-style="western"><surname>Cao</surname><given-names>J</given-names></name>
963
+ <etal/>
964
+ </person-group>
965
+ <year>2010</year>
966
+ <article-title>Advances in combination of antiangiogenic agents targeting VEGF-binding and conventional chemotherapy and radiation for cancer treatment.</article-title>
967
+ <source>J Chin Med Assoc</source>
968
+ <volume>73</volume>
969
+ <fpage>281</fpage>
970
+ <lpage>288</lpage>
971
+ </element-citation>
972
+ </ref>
973
+ <ref id="pone.0028384-Huang1">
974
+ <label>43</label>
975
+ <element-citation publication-type="journal" xlink:type="simple">
976
+ <person-group person-group-type="author">
977
+ <name name-style="western"><surname>Huang</surname><given-names>J</given-names></name>
978
+ <name name-style="western"><surname>Frischer</surname><given-names>JS</given-names></name>
979
+ <name name-style="western"><surname>Serur</surname><given-names>A</given-names></name>
980
+ <name name-style="western"><surname>Kadenhe</surname><given-names>A</given-names></name>
981
+ <name name-style="western"><surname>Yokoi</surname><given-names>A</given-names></name>
982
+ <etal/>
983
+ </person-group>
984
+ <year>2003</year>
985
+ <article-title>Regression of established tumors and metastases by potent vascular endothelial growth factor blockade.</article-title>
986
+ <source>Proc Natl Acad Sci USA</source>
987
+ <volume>100</volume>
988
+ <fpage>7785</fpage>
989
+ <lpage>7790</lpage>
990
+ </element-citation>
991
+ </ref>
992
+ <ref id="pone.0028384-Baffert1">
993
+ <label>44</label>
994
+ <element-citation publication-type="journal" xlink:type="simple"> <person-group person-group-type="author"><name name-style="western"><surname>Baffert</surname><given-names>F</given-names></name><name name-style="western"><surname>Thurston</surname><given-names>G</given-names></name><name name-style="western"><surname>Rochon-Duck</surname><given-names>M</given-names></name><name name-style="western"><surname>Le</surname><given-names>T</given-names></name><name name-style="western"><surname>Brekken</surname><given-names>R</given-names></name><etal/></person-group> <year>2004</year> <article-title>Age-related changes in VEGF-dependency and angiopoietin-1 induced plasticity of adult blood vessels.</article-title> <source>Circ Res</source> <volume>94</volume> <fpage>984</fpage> <lpage>992</lpage> </element-citation>
995
+ </ref>
996
+ </ref-list>
997
+
998
+ </back>
999
+ </article>