-
Notifications
You must be signed in to change notification settings - Fork 4
/
output.json
22031 lines (22031 loc) · 944 KB
/
output.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"rss": {
"version": [
"2.0"
],
"channel": [
{
"title": [
"ClinicalTrials.gov: Recruiting, Not yet recruiting, Active, not recruiting, Completed, Enrolling by invitation Studies | Interventional Studies | cancer | Last update posted in the last 14 days"
],
"link": [
"https://clinicaltrials.gov/ct2/results/rss.xml?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14&count=1000"
],
"description": [
"Studies found on ClinicalTrials.gov by a search of: Recruiting, Not yet recruiting, Active, not recruiting, Completed, Enrolling by invitation Studies | Interventional Studies | cancer | Last update posted in the last 14 days"
],
"language": [
"en-us"
],
"pubDate": [
"Wed, 10 Feb 2021 10:17:14 EST"
],
"ttl": [
"1440"
],
"item": [
{
"title": [
"Individualizing Surveillance Mammography for Older Breast Cancer Survivors"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03865654?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Intervention</b>: Other: Communication Tool<br/><b>Sponsors</b>: Dana-Farber Cancer Institute; National Institutes of Health (NIH); National Cancer Institute (NCI)<br/><b>Enrolling by invitation</b>"
],
"guid": [
{
"_": "NCT03865654",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 07 Mar 2019 12:00:00 EST"
]
},
{
"title": [
"Circulating Tumor DNA for the Early Detection of HPV-positive Pelvic Cancer Relapses"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03739775?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: HPV Positive Pelvic Cancer<br/><b>Intervention</b>: Procedure: Blood sampling<br/><b>Sponsor</b>: Institut Curie<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03739775",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 14 Nov 2018 12:00:00 EST"
]
},
{
"title": [
"A Phase II Study of Nivolumab in Combination With Cabozantinib for Metastatic Triple-negative Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03316586?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Nivolumab; Drug: Cabozantinib<br/><b>Sponsors</b>: Dana-Farber Cancer Institute; Bristol-Myers Squibb; Exelixis<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT03316586",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 20 Oct 2017 12:00:00 EDT"
]
},
{
"title": [
"Study to Evaluate Sacituzumab Govitecan in Combination With Talazoparib in Patients With Metastatic Breast Cancer."
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04039230?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Talazoparib; Drug: Sacituzumab Govitecan<br/><b>Sponsors</b>: Massachusetts General Hospital; Pfizer<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04039230",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 31 Jul 2019 12:00:00 EDT"
]
},
{
"title": [
"Efficacy and Safety of Sintilimab and Apatinib Combined Chemotherapy in Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04722718?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Intervention</b>: Drug: Sintilimab+Apatinib+Albumin paclitaxel+Carboplatin<br/><b>Sponsor</b>: Jiuda Zhao<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04722718",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 25 Jan 2021 12:00:00 EST"
]
},
{
"title": [
"Comparing Restriction Spectrum Imaging (RSI) to Conventional and Abbreviated Breast MRI for Breast Cancer Screening"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03495115?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Device: MRI; Device: RSI<br/><b>Sponsors</b>: Dana-Farber Cancer Institute; Radiological Society of North America<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT03495115",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 11 Apr 2018 12:00:00 EDT"
]
},
{
"title": [
"AKT Inhibitor, Ipatasertib, With Endocrine and CDK 4/6 Inhibitor for Patients With Metastatic Breast Cancer (TAKTIC)"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03959891?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Ipatasertib; Drug: Fulvestrant; Drug: Aromatase Inhibitor; Drug: Palbociclib<br/><b>Sponsors</b>: Massachusetts General Hospital; Genentech, Inc.<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03959891",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 22 May 2019 12:00:00 EDT"
]
},
{
"title": [
"CDK 4/6 Inhibitor, Ribociclib, With Adjuvant Endocrine Therapy for ER-positive Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03285412?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Ribociclib; Other: Endocrine therapy<br/><b>Sponsors</b>: Massachusetts General Hospital; Novartis<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03285412",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 18 Sep 2017 12:00:00 EDT"
]
},
{
"title": [
"The Engaging Primary Care in Cancer Survivorship (EPICS) Study"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04745754?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Conditions</b>: Breast Cancer; Colorectal Cancer<br/><b>Intervention</b>: Other: Embedded primary care in cancer survivorship model<br/><b>Sponsors</b>: Kaiser Permanente; National Cancer Institute (NCI)<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04745754",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 09 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"A Phase II Clinical Trial Comparing the Efficacy of RO7198457 Versus Watchful Waiting in Patients With ctDNA-positive, Resected Stage II (High Risk) and Stage III Colorectal Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04486378?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Conditions</b>: Colorectal Cancer Stage II; Colorectal Cancer Stage III<br/><b>Interventions</b>: Drug: RO7198457 intravenous (i.v.); Other: Observational group (no intervention)<br/><b>Sponsor</b>: BioNTech SE<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04486378",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 24 Jul 2020 12:00:00 EDT"
]
},
{
"title": [
"Open-label, Multicenter Study of Intramuscular PRL-02 Depot in Patients With Advanced Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04729114?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Prostate Cancer<br/><b>Intervention</b>: Drug: abiraterone decanoate<br/><b>Sponsor</b>: Propella Therapeutics<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04729114",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 28 Jan 2021 12:00:00 EST"
]
},
{
"title": [
"Phase II Trial of Combination Immunotherapy With NeuVax and Trastuzumab in High-risk HER2+ Breast Cancer Patients"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT02297698?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Biological: NeuVax vaccine; Drug: Trastuzumab; Drug: GM-CSF<br/><b>Sponsors</b>: Cancer Insight, LLC; Genentech, Inc.; Sellas Life Sciences Group<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT02297698",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 21 Nov 2014 12:00:00 EST"
]
},
{
"title": [
"A Phase II Study to Explore the Safety, Tolerability, and Preliminary Antitumor Activity of Sitravatinib and Tislelizumab in Patients With Locally Recurrent or Metastatic Triple Negative Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04734262?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Metastatic Breast Cancer<br/><b>Interventions</b>: Drug: Sitravatinib; Drug: Tislelizumab<br/><b>Sponsor</b>: Fudan University<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04734262",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 02 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"Supportive Oncology Care at Home for Patients With Pancreatic Cancer Receiving Preoperative FOLFIRINOX"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03798769?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Pancreas Cancer<br/><b>Intervention</b>: Other: Supportive Oncology Care at Home<br/><b>Sponsors</b>: Massachusetts General Hospital; Stand Up To Cancer<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT03798769",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 10 Jan 2019 12:00:00 EST"
]
},
{
"title": [
"Transcutaneous Breast Cancer Diagnosis by Canine Odorology"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04217109?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Intervention</b>: Diagnostic Test: Odour sampling<br/><b>Sponsor</b>: Institut Curie<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04217109",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 03 Jan 2020 12:00:00 EST"
]
},
{
"title": [
"Impact of Family History and Decision Support on High-risk Cancer Screening"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT02247336?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Colorectal Cancer<br/><b>Intervention</b>: Behavioral: MeTree<br/><b>Sponsor</b>: VA Office of Research and Development<br/><b>Completed</b>"
],
"guid": [
{
"_": "NCT02247336",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 25 Sep 2014 12:00:00 EDT"
]
},
{
"title": [
"Fruquintinib Plus Capecitabine Versus Bevacizumab Plus Capecitabine as Maintenance Therapy Following First-line Treatment for Metastatic Colorectal Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04733963?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Colorectal Cancer<br/><b>Interventions</b>: Drug: Fruquintinib Plus Capecitabine; Drug: Bevacizumab Plus Capecitabine<br/><b>Sponsor</b>: Second Affiliated Hospital, School of Medicine, Zhejiang University<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04733963",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 02 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"A Value Affirmation Intervention in Breast Cancer Patients Taking Aromatase Inhibitors"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04651452?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Behavioral: Value Affirmation; Behavioral: Reflective Journaling<br/><b>Sponsors</b>: Carnegie Mellon University; National Cancer Institute (NCI)<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04651452",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 03 Dec 2020 12:00:00 EST"
]
},
{
"title": [
"Pivotal Study of Intraoperative Detection of Residual Cancer in Breast Cancer Patients"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03686215?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Intervention</b>: Combination Product: Study Device Arm<br/><b>Sponsors</b>: Lumicell, Inc.; National Cancer Institute (NCI)<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03686215",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 26 Sep 2018 12:00:00 EDT"
]
},
{
"title": [
"TNT in Rectal Cancer Treatment"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04747951?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Rectal Cancer<br/><b>Interventions</b>: Combination Product: Concurrent Chemoradiotherapy; Procedure: TME; Drug: consolidation chemotherapy; Drug: adjuvant chemotherapy<br/><b>Sponsor</b>: State Scientific Centre of Coloproctology, Russian Federation<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04747951",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 10 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"A Phase 3 Study of 99mTC-EC-DG SPECT/CT Versus PET/CT in Lung Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT01394679?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Lung Cancer<br/><b>Interventions</b>: Drug: (99m Tc) ECDG (Ethylenedicysteine-Deoxyglucose); Drug: 18 F FDG followed by PET/CT imaging<br/><b>Sponsor</b>: Cell>Point LLC<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT01394679",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 14 Jul 2011 12:00:00 EDT"
]
},
{
"title": [
"Cetuximab Therapy for Third Line Rechallenge in Metastatic Colorectal Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03524820?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Cancer of Colon<br/><b>Intervention</b>: Drug: Cetuximab<br/><b>Sponsors</b>: Hadassah Medical Organization; Merck Serono International SA<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03524820",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 15 May 2018 12:00:00 EDT"
]
},
{
"title": [
"Prospective Multicentre Phase-IV Clinical Trial of Olaparib in Indian Patients With Ovarian and Metastatic Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04330040?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Conditions</b>: Ovarian Cancer; Breast Cancer<br/><b>Intervention</b>: Drug: Olaparib<br/><b>Sponsor</b>: AstraZeneca<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04330040",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 01 Apr 2020 12:00:00 EDT"
]
},
{
"title": [
"Lifestyle Intervention Among Participants of the French Colorectal Cancer Screening Program"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04257526?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Colorectal Cancer<br/><b>Intervention</b>: Behavioral: Diet and lifestyle advice following a positive FIT test and diagnostic colonoscopy.<br/><b>Sponsors</b>: International Agency for Research on Cancer; Centre Leon Berard; Hôpital Edouard Herriot; University of Bordeaux<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04257526",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 06 Feb 2020 12:00:00 EST"
]
},
{
"title": [
"Feasibility Study of LUM Imaging System for Pancreatic Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04276909?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Pancreatic Cancer<br/><b>Intervention</b>: Combination Product: LUM Imaging System<br/><b>Sponsor</b>: Lumicell, Inc.<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04276909",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 19 Feb 2020 12:00:00 EST"
]
},
{
"title": [
"Fractionated Docetaxel and Radium 223 in Metastatic Castration-Resistant Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03737370?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Metastatic Castrate Resistant Prostate Cancer<br/><b>Interventions</b>: Drug: Docetaxel; Radiation: Radium 223<br/><b>Sponsors</b>: Tufts Medical Center; Bayer; Lahey Clinic; Henry Ford Hospital; Ohio State University Comprehensive Cancer Center<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03737370",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 09 Nov 2018 12:00:00 EST"
]
},
{
"title": [
"A Study of Abiraterone Acetate Plus Prednisone With or Without Abemaciclib (LY2835219) in Participants With Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03706365?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Prostate Cancer<br/><b>Interventions</b>: Drug: Abemaciclib; Drug: Abiraterone Acetate; Drug: Prednisone; Drug: Placebo<br/><b>Sponsor</b>: Eli Lilly and Company<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03706365",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 16 Oct 2018 12:00:00 EDT"
]
},
{
"title": [
"Consolidative Radiotherapy for Metastatic Urothelial Bladder Cancer Patients Without Progression and With no More Than Three Residual Metastatic Lesions Following First Line Systemic Therapy"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04428554?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Urothelial Bladder Cancer<br/><b>Intervention</b>: Radiation: Experimental arm<br/><b>Sponsor</b>: Institut Claudius Regaud<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04428554",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 11 Jun 2020 12:00:00 EDT"
]
},
{
"title": [
"Docetaxel+Carboplatin vs Epirubicin+Cyclophosphamide Followed by Docetaxel as Adjuvant Treatment in Triple-negative Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT01150513?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: EC-T; Drug: TP<br/><b>Sponsor</b>: Chinese Academy of Medical Sciences<br/><b>Completed</b>"
],
"guid": [
{
"_": "NCT01150513",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 25 Jun 2010 12:00:00 EDT"
]
},
{
"title": [
"Phase 3 Study of ProstAtak® Immunotherapy With Standard Radiation Therapy for Localized Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT01436968?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Prostate Cancer<br/><b>Interventions</b>: Biological: Aglatimagene besadenovec + valacyclovir; Biological: Placebo + valacyclovir<br/><b>Sponsor</b>: Candel Therapeutics, Inc.<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT01436968",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 20 Sep 2011 12:00:00 EDT"
]
},
{
"title": [
"A Study of Tucatinib Plus Trastuzumab Deruxtecan in HER2+ Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04539938?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: tucatinib; Drug: trastuzumab deruxtecan<br/><b>Sponsor</b>: Seagen Inc.<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04539938",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 07 Sep 2020 12:00:00 EDT"
]
},
{
"title": [
"\"Impact of a Nursing Intervention in the Management of Oncological Patients With Lung Cancer Under Treatment With Immunotherapy\""
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04619810?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Lung Cancer<br/><b>Intervention</b>: Other: Nurse intervention program<br/><b>Sponsor</b>: Fundació Institut de Recerca de l'Hospital de la Santa Creu i Sant Pau<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04619810",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 06 Nov 2020 12:00:00 EST"
]
},
{
"title": [
"Inetetamab Plus Rapamycin and Chemotherapy for HER2+ Metastatic Breast Cancer With Abnormal Activation of PAM Pathway"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04736589?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Inetetamab; Drug: Rapamycin; Drug: Pyrotinib; Drug: Chemotherapy<br/><b>Sponsor</b>: Peking Union Medical College<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04736589",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Wed, 03 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"Herceptin Followed by Chemotherapy in Treating Women With Metastatic Breast Cancer That Overexpresses HER2"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT00004935?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Herceptin™ (Her); Drug: Herceptin™ (Her) + chemo<br/><b>Sponsor</b>: Swiss Group for Clinical Cancer Research<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT00004935",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 27 Jan 2003 12:00:00 EST"
]
},
{
"title": [
"A Study to Evaluate U3-1402 in Subjects With Advanced or Metastatic Colorectal Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04479436?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Metastatic Colorectal Cancer<br/><b>Intervention</b>: Drug: U3-1402<br/><b>Sponsor</b>: Daiichi Sankyo, Inc.<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04479436",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 21 Jul 2020 12:00:00 EDT"
]
},
{
"title": [
"Study of Nab-Paclitaxel in High Risk Early Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT01690702?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Epirubicin; Drug: nab-Paclitaxel; Drug: Cyclophosphamide; Drug: Docetaxel<br/><b>Sponsors</b>: German Breast Group; Celgene; Amgen<br/><b>Completed</b>"
],
"guid": [
{
"_": "NCT01690702",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 24 Sep 2012 12:00:00 EDT"
]
},
{
"title": [
"Radiotherapy for Oligometastatic Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT01859221?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Oligometastatic Prostate Cancer<br/><b>Intervention</b>: Radiation: Stereotactic radiation<br/><b>Sponsor</b>: University of Florida<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT01859221",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 21 May 2013 12:00:00 EDT"
]
},
{
"title": [
"Acupressure for Cancer-Related Fatigue"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03091647?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Behavioral: acupressure intervention; Behavioral: usual care<br/><b>Sponsor</b>: Georgetown University<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT03091647",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 27 Mar 2017 12:00:00 EDT"
]
},
{
"title": [
"TALAVE: Induction Talazoparib Followed by Combination of Talazoparib and Avelumab in Advanced Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT03964532?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Talazoparib; Drug: Avelumab<br/><b>Sponsors</b>: Georgetown University; Pfizer<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT03964532",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Tue, 28 May 2019 12:00:00 EDT"
]
},
{
"title": [
"Neoadjuvant Carboplatin and Docetaxel in Triple Negative Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT02547987?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Interventions</b>: Drug: Docetaxel; Drug: Carboplatin<br/><b>Sponsor</b>: Mothaffar Rimawi<br/><b>Active, not recruiting</b>"
],
"guid": [
{
"_": "NCT02547987",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Mon, 14 Sep 2015 12:00:00 EDT"
]
},
{
"title": [
"PyL in Patients With High Risk and Biochemically Recurrent Prostate Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04700332?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Prostate Cancer<br/><b>Intervention</b>: Drug: DCFPyL PET/CT<br/><b>Sponsor</b>: Hoag Memorial Hospital Presbyterian<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04700332",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 07 Jan 2021 12:00:00 EST"
]
},
{
"title": [
"A Study of T-DXd in Participants With or Without Brain Metastasis Who Have Previously Treated Advanced or Metastatic HER2 Positive Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04739761?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Breast Cancer<br/><b>Intervention</b>: Drug: Trastuzumab Deruxtecan<br/><b>Sponsors</b>: AstraZeneca; Daiichi Sankyo, Inc.<br/><b>Not yet recruiting</b>"
],
"guid": [
{
"_": "NCT04739761",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 05 Feb 2021 12:00:00 EST"
]
},
{
"title": [
"Immature Granulocyte Count and Delta Neutrophil Index Factors for Axillary Metastasis of Breast Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04729647?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Conditions</b>: Breast Cancer; Breast Cancer Invasive<br/><b>Intervention</b>: Procedure: Mastectomy<br/><b>Sponsor</b>: Kahramanmaras Sutcu Imam University<br/><b>Completed</b>"
],
"guid": [
{
"_": "NCT04729647",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Thu, 28 Jan 2021 12:00:00 EST"
]
},
{
"title": [
"A Clinical Study of Pyrotinib in Patients With HER2-positive Advanced Colorectal Cancer"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04380012?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"
],
"description": [
"<b>Condition</b>: Colorectal Cancer<br/><b>Interventions</b>: Drug: Pyrotinib; Drug: Pyrotinib in combination with trastuzumab<br/><b>Sponsor</b>: Second Affiliated Hospital, School of Medicine, Zhejiang University<br/><b>Recruiting</b>"
],
"guid": [
{
"_": "NCT04380012",
"isPermaLink": [
"false"
]
}
],
"pubDate": [
"Fri, 08 May 2020 12:00:00 EDT"
]
},
{
"title": [
"Neoadjuvant Immunotherapy and Chemotherapy for Locally Advanced Esophagogastric Junction and Gastric Cancer Trial"
],
"link": [
"https://clinicaltrials.gov/ct2/show/NCT04744649?recrs=abdef&type=Intr&cond=cancer&lupd_s=01%2F28%2F2021&lupd_d=14"