@yeyuan98/opencode-bioresearcher-plugin 1.5.2 → 1.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/agents/bioresearcher/prompt.js +235 -235
- package/dist/skills/bioresearcher-core/patterns/bioresearcher/analysis-methods.md +551 -551
- package/dist/skills/bioresearcher-core/patterns/bioresearcher/best-practices.md +647 -647
- package/dist/skills/bioresearcher-core/patterns/bioresearcher/python-standards.md +944 -944
- package/dist/skills/bioresearcher-core/patterns/bioresearcher/report-template.md +613 -613
- package/dist/skills/bioresearcher-core/patterns/bioresearcher/tool-selection.md +481 -481
- package/dist/skills/bioresearcher-core/patterns/citations.md +234 -234
- package/dist/skills/bioresearcher-core/patterns/rate-limiting.md +167 -167
- package/dist/skills/gromacs-guides/SKILL.md +48 -0
- package/dist/skills/gromacs-guides/guides/create_index.md +96 -0
- package/dist/skills/gromacs-guides/guides/inspect_tpr.md +93 -0
- package/package.json +1 -1
|
@@ -1,234 +1,234 @@
|
|
|
1
|
-
# Citations Pattern
|
|
2
|
-
|
|
3
|
-
Standardized citation format for biomedical research with automatic bibliography generation.
|
|
4
|
-
|
|
5
|
-
## Overview
|
|
6
|
-
|
|
7
|
-
Use this pattern to maintain consistent citations throughout research outputs. All findings must be backed by sources with proper citations.
|
|
8
|
-
|
|
9
|
-
## Citation Style
|
|
10
|
-
|
|
11
|
-
Use **numbered citations** for biomedical research:
|
|
12
|
-
|
|
13
|
-
- In-text: [1], [2], [3]
|
|
14
|
-
- Bibliography: Numbered list at end of document
|
|
15
|
-
|
|
16
|
-
## In-Text Citation Format
|
|
17
|
-
|
|
18
|
-
### Single Source
|
|
19
|
-
```
|
|
20
|
-
BRAF V600E mutations are found in approximately 50% of melanomas [1].
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
### Multiple Sources
|
|
24
|
-
```
|
|
25
|
-
Several studies have confirmed this association [1, 2, 3].
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
### Range of Sources
|
|
29
|
-
```
|
|
30
|
-
This has been extensively documented [1-5].
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
### Specific Claims
|
|
34
|
-
```
|
|
35
|
-
The drug was approved in 2011 [1] and has since become standard of care [2, 3].
|
|
36
|
-
```
|
|
37
|
-
|
|
38
|
-
## Bibliography Format
|
|
39
|
-
|
|
40
|
-
### PubMed Articles
|
|
41
|
-
|
|
42
|
-
```
|
|
43
|
-
[1] Author1 AB, Author2 CD, Author3 EF. Article Title. Journal Name. Year;Volume(Issue):Pages. PMID: XXXXXXXX.
|
|
44
|
-
```
|
|
45
|
-
|
|
46
|
-
**Example:**
|
|
47
|
-
```
|
|
48
|
-
[1] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### Clinical Trials
|
|
52
|
-
|
|
53
|
-
```
|
|
54
|
-
[N] NCT ID: Trial Title. Phase X. Sponsor: Company/Institution. Status: Recruiting/Completed. URL: https://clinicaltrials.gov/ct2/show/NCTXXXXXXX
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
**Example:**
|
|
58
|
-
```
|
|
59
|
-
[2] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
60
|
-
```
|
|
61
|
-
|
|
62
|
-
### Web Sources
|
|
63
|
-
|
|
64
|
-
```
|
|
65
|
-
[N] Page Title. Website Name. Published/Updated Date. URL. Accessed: YYYY-MM-DD.
|
|
66
|
-
```
|
|
67
|
-
|
|
68
|
-
**Example:**
|
|
69
|
-
```
|
|
70
|
-
[3] BRAF Gene. National Cancer Institute. Updated 2024. https://www.cancer.gov/about-cancer/causes-prevention/genetics/brca-genes. Accessed: 2024-01-15.
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
### Drug/Chemical Information
|
|
74
|
-
|
|
75
|
-
```
|
|
76
|
-
[N] Drug Name. DrugBank ID: DBXXXXX. ChEMBL ID: CHEMBLXXXXX. Indication: Disease.
|
|
77
|
-
```
|
|
78
|
-
|
|
79
|
-
**Example:**
|
|
80
|
-
```
|
|
81
|
-
[4] Vemurafenib. DrugBank ID: DB08881. ChEMBL ID: CHEMBL1229511. Indication: Melanoma.
|
|
82
|
-
```
|
|
83
|
-
|
|
84
|
-
### Gene Information
|
|
85
|
-
|
|
86
|
-
```
|
|
87
|
-
[N] Gene Symbol: Gene Name. Entrez ID: XXXXXX. HGNC ID: HGNC:XXXX.
|
|
88
|
-
```
|
|
89
|
-
|
|
90
|
-
**Example:**
|
|
91
|
-
```
|
|
92
|
-
[5] BRAF: B-Raf proto-oncogene, serine/threonine kinase. Entrez ID: 673. HGNC ID: HGNC:1097.
|
|
93
|
-
```
|
|
94
|
-
|
|
95
|
-
## Source-Specific Citation Workflows
|
|
96
|
-
|
|
97
|
-
### From BioMCP Article Results
|
|
98
|
-
|
|
99
|
-
When using `biomcp_search` or `biomcp_article_searcher`:
|
|
100
|
-
|
|
101
|
-
```
|
|
102
|
-
1. Extract from result:
|
|
103
|
-
- Authors (first author + "et al." if many)
|
|
104
|
-
- Title
|
|
105
|
-
- Journal
|
|
106
|
-
- Year
|
|
107
|
-
- PMID (from result.id or result.metadata)
|
|
108
|
-
|
|
109
|
-
2. Use biomcp_article_getter(pmid="XXXXXXXX") for full metadata if needed
|
|
110
|
-
|
|
111
|
-
3. Format citation
|
|
112
|
-
```
|
|
113
|
-
|
|
114
|
-
### From Clinical Trials
|
|
115
|
-
|
|
116
|
-
When using `biomcp_trial_searcher` or `biomcp_trial_getter`:
|
|
117
|
-
|
|
118
|
-
```
|
|
119
|
-
1. Extract from result:
|
|
120
|
-
- NCT ID (result.id)
|
|
121
|
-
- Official title
|
|
122
|
-
- Phase
|
|
123
|
-
- Sponsor
|
|
124
|
-
- Status
|
|
125
|
-
|
|
126
|
-
2. Format citation with ClinicalTrials.gov URL
|
|
127
|
-
```
|
|
128
|
-
|
|
129
|
-
### From Gene/Drug/Variant Information
|
|
130
|
-
|
|
131
|
-
When using gene_getter, drug_getter, or variant_getter:
|
|
132
|
-
|
|
133
|
-
```
|
|
134
|
-
1. Extract identifiers:
|
|
135
|
-
- Gene: Symbol, Entrez ID, HGNC ID
|
|
136
|
-
- Drug: Name, DrugBank ID, ChEMBL ID
|
|
137
|
-
- Variant: HGVS notation, rsID, ClinVar significance
|
|
138
|
-
|
|
139
|
-
2. Format as database citation
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
## Bibliography Section Format
|
|
143
|
-
|
|
144
|
-
Place bibliography at the end of your document:
|
|
145
|
-
|
|
146
|
-
```markdown
|
|
147
|
-
## References
|
|
148
|
-
|
|
149
|
-
[1] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
150
|
-
|
|
151
|
-
[2] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
152
|
-
|
|
153
|
-
[3] BRAF Gene. National Cancer Institute. Updated 2024. https://www.cancer.gov/about-cancer/causes-prevention/genetics/brca-genes. Accessed: 2024-01-15.
|
|
154
|
-
```
|
|
155
|
-
|
|
156
|
-
## Example: Research Report with Citations
|
|
157
|
-
|
|
158
|
-
```markdown
|
|
159
|
-
# BRAF Mutations in Melanoma
|
|
160
|
-
|
|
161
|
-
## Overview
|
|
162
|
-
|
|
163
|
-
BRAF V600E is the most common mutation in cutaneous melanoma, occurring in approximately 50% of cases [1]. This mutation leads to constitutive activation of the MAPK signaling pathway [2].
|
|
164
|
-
|
|
165
|
-
## Treatment Landscape
|
|
166
|
-
|
|
167
|
-
Targeted therapies against BRAF V600E have significantly improved outcomes:
|
|
168
|
-
|
|
169
|
-
- **Vemurafenib**: First FDA-approved BRAF inhibitor (2011) [3]
|
|
170
|
-
- **Dabrafenib**: Second-generation BRAF inhibitor [4]
|
|
171
|
-
- **Combination therapy**: BRAF + MEK inhibition improves survival [5]
|
|
172
|
-
|
|
173
|
-
## Clinical Trials
|
|
174
|
-
|
|
175
|
-
Several ongoing trials are exploring combination approaches:
|
|
176
|
-
|
|
177
|
-
- NCT04280705: Encorafenib + cetuximab ± nivolumab in colorectal cancer [6]
|
|
178
|
-
- NCT04511078: Adjuvant dabrafenib + trametinib in melanoma [7]
|
|
179
|
-
|
|
180
|
-
## References
|
|
181
|
-
|
|
182
|
-
[1] Davies H, Bignell GR, Cox C, et al. Mutations of the BRAF gene in human cancer. Nature. 2002;417(6892):949-954. PMID: 12068308.
|
|
183
|
-
|
|
184
|
-
[2] Wan PT, Garnett MJ, Roe SM, et al. Mechanism of activation of RAF-ERK signaling by oncogenic mutations of B-RAF. Cell. 2004;116(6):855-867. PMID: 15035987.
|
|
185
|
-
|
|
186
|
-
[3] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
187
|
-
|
|
188
|
-
[4] Hauschild A, Grob JJ, Demidov LV, et al. Dabrafenib in BRAF-mutated metastatic melanoma: a multicentre, open-label, phase 3 randomised controlled trial. Lancet. 2012;380(9839):358-365. PMID: 22735384.
|
|
189
|
-
|
|
190
|
-
[5] Robert C, Karaszewska B, Schachter J, et al. Improved overall survival in melanoma with combined dabrafenib and trametinib. N Engl J Med. 2015;372(1):30-39. PMID: 25399551.
|
|
191
|
-
|
|
192
|
-
[6] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
193
|
-
|
|
194
|
-
[7] NCT04511078: Adjuvant Dabrafenib Plus Trametinib in Resected BRAF V600-Mutant Melanoma. Phase 3. Sponsor: Novartis. Status: Recruiting. https://clinicaltrials.gov/ct2/show/NCT04511078
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
## Citation Quality Standards
|
|
198
|
-
|
|
199
|
-
### What to Cite
|
|
200
|
-
|
|
201
|
-
| Source Type | Citation Required |
|
|
202
|
-
|-------------|-------------------|
|
|
203
|
-
| Published research | Yes |
|
|
204
|
-
| Clinical trial data | Yes |
|
|
205
|
-
| Drug approval info | Yes |
|
|
206
|
-
| Gene/variant annotations | Yes |
|
|
207
|
-
| Statistical claims | Yes |
|
|
208
|
-
| Direct quotes | Yes |
|
|
209
|
-
| General knowledge | No (e.g., "DNA has 4 bases") |
|
|
210
|
-
|
|
211
|
-
### Citation Integrity
|
|
212
|
-
|
|
213
|
-
1. **Verify source exists**: Always confirm PMID, NCT ID, URL is valid
|
|
214
|
-
2. **Quote accurately**: Don't misrepresent findings
|
|
215
|
-
3. **Cite primary sources**: Prefer original papers over reviews
|
|
216
|
-
4. **Update outdated citations**: Use latest evidence when available
|
|
217
|
-
|
|
218
|
-
## Tools for Citation Generation
|
|
219
|
-
|
|
220
|
-
| Tool | Use Case |
|
|
221
|
-
|------|----------|
|
|
222
|
-
| `biomcp_article_getter` | Get full article metadata from PMID |
|
|
223
|
-
| `biomcp_trial_getter` | Get trial details from NCT ID |
|
|
224
|
-
| `biomcp_gene_getter` | Get gene identifiers |
|
|
225
|
-
| `biomcp_drug_getter` | Get drug identifiers |
|
|
226
|
-
|
|
227
|
-
## Best Practices
|
|
228
|
-
|
|
229
|
-
1. **Cite as you write**: Add citations immediately when making claims
|
|
230
|
-
2. **Number sequentially**: [1], [2], [3] in order of appearance
|
|
231
|
-
3. **Include access dates**: For web sources, always include when accessed
|
|
232
|
-
4. **Verify PMIDs**: Double-check PMID matches the article
|
|
233
|
-
5. **Keep bibliography alphabetical by number**: Not by author
|
|
234
|
-
6. **Format consistently**: Same style throughout document
|
|
1
|
+
# Citations Pattern
|
|
2
|
+
|
|
3
|
+
Standardized citation format for biomedical research with automatic bibliography generation.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
Use this pattern to maintain consistent citations throughout research outputs. All findings must be backed by sources with proper citations.
|
|
8
|
+
|
|
9
|
+
## Citation Style
|
|
10
|
+
|
|
11
|
+
Use **numbered citations** for biomedical research:
|
|
12
|
+
|
|
13
|
+
- In-text: [1], [2], [3]
|
|
14
|
+
- Bibliography: Numbered list at end of document
|
|
15
|
+
|
|
16
|
+
## In-Text Citation Format
|
|
17
|
+
|
|
18
|
+
### Single Source
|
|
19
|
+
```
|
|
20
|
+
BRAF V600E mutations are found in approximately 50% of melanomas [1].
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Multiple Sources
|
|
24
|
+
```
|
|
25
|
+
Several studies have confirmed this association [1, 2, 3].
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Range of Sources
|
|
29
|
+
```
|
|
30
|
+
This has been extensively documented [1-5].
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Specific Claims
|
|
34
|
+
```
|
|
35
|
+
The drug was approved in 2011 [1] and has since become standard of care [2, 3].
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Bibliography Format
|
|
39
|
+
|
|
40
|
+
### PubMed Articles
|
|
41
|
+
|
|
42
|
+
```
|
|
43
|
+
[1] Author1 AB, Author2 CD, Author3 EF. Article Title. Journal Name. Year;Volume(Issue):Pages. PMID: XXXXXXXX.
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
**Example:**
|
|
47
|
+
```
|
|
48
|
+
[1] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Clinical Trials
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
[N] NCT ID: Trial Title. Phase X. Sponsor: Company/Institution. Status: Recruiting/Completed. URL: https://clinicaltrials.gov/ct2/show/NCTXXXXXXX
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
**Example:**
|
|
58
|
+
```
|
|
59
|
+
[2] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Web Sources
|
|
63
|
+
|
|
64
|
+
```
|
|
65
|
+
[N] Page Title. Website Name. Published/Updated Date. URL. Accessed: YYYY-MM-DD.
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
**Example:**
|
|
69
|
+
```
|
|
70
|
+
[3] BRAF Gene. National Cancer Institute. Updated 2024. https://www.cancer.gov/about-cancer/causes-prevention/genetics/brca-genes. Accessed: 2024-01-15.
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Drug/Chemical Information
|
|
74
|
+
|
|
75
|
+
```
|
|
76
|
+
[N] Drug Name. DrugBank ID: DBXXXXX. ChEMBL ID: CHEMBLXXXXX. Indication: Disease.
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
**Example:**
|
|
80
|
+
```
|
|
81
|
+
[4] Vemurafenib. DrugBank ID: DB08881. ChEMBL ID: CHEMBL1229511. Indication: Melanoma.
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
### Gene Information
|
|
85
|
+
|
|
86
|
+
```
|
|
87
|
+
[N] Gene Symbol: Gene Name. Entrez ID: XXXXXX. HGNC ID: HGNC:XXXX.
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
**Example:**
|
|
91
|
+
```
|
|
92
|
+
[5] BRAF: B-Raf proto-oncogene, serine/threonine kinase. Entrez ID: 673. HGNC ID: HGNC:1097.
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
## Source-Specific Citation Workflows
|
|
96
|
+
|
|
97
|
+
### From BioMCP Article Results
|
|
98
|
+
|
|
99
|
+
When using `biomcp_search` or `biomcp_article_searcher`:
|
|
100
|
+
|
|
101
|
+
```
|
|
102
|
+
1. Extract from result:
|
|
103
|
+
- Authors (first author + "et al." if many)
|
|
104
|
+
- Title
|
|
105
|
+
- Journal
|
|
106
|
+
- Year
|
|
107
|
+
- PMID (from result.id or result.metadata)
|
|
108
|
+
|
|
109
|
+
2. Use biomcp_article_getter(pmid="XXXXXXXX") for full metadata if needed
|
|
110
|
+
|
|
111
|
+
3. Format citation
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
### From Clinical Trials
|
|
115
|
+
|
|
116
|
+
When using `biomcp_trial_searcher` or `biomcp_trial_getter`:
|
|
117
|
+
|
|
118
|
+
```
|
|
119
|
+
1. Extract from result:
|
|
120
|
+
- NCT ID (result.id)
|
|
121
|
+
- Official title
|
|
122
|
+
- Phase
|
|
123
|
+
- Sponsor
|
|
124
|
+
- Status
|
|
125
|
+
|
|
126
|
+
2. Format citation with ClinicalTrials.gov URL
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### From Gene/Drug/Variant Information
|
|
130
|
+
|
|
131
|
+
When using gene_getter, drug_getter, or variant_getter:
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
1. Extract identifiers:
|
|
135
|
+
- Gene: Symbol, Entrez ID, HGNC ID
|
|
136
|
+
- Drug: Name, DrugBank ID, ChEMBL ID
|
|
137
|
+
- Variant: HGVS notation, rsID, ClinVar significance
|
|
138
|
+
|
|
139
|
+
2. Format as database citation
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## Bibliography Section Format
|
|
143
|
+
|
|
144
|
+
Place bibliography at the end of your document:
|
|
145
|
+
|
|
146
|
+
```markdown
|
|
147
|
+
## References
|
|
148
|
+
|
|
149
|
+
[1] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
150
|
+
|
|
151
|
+
[2] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
152
|
+
|
|
153
|
+
[3] BRAF Gene. National Cancer Institute. Updated 2024. https://www.cancer.gov/about-cancer/causes-prevention/genetics/brca-genes. Accessed: 2024-01-15.
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
## Example: Research Report with Citations
|
|
157
|
+
|
|
158
|
+
```markdown
|
|
159
|
+
# BRAF Mutations in Melanoma
|
|
160
|
+
|
|
161
|
+
## Overview
|
|
162
|
+
|
|
163
|
+
BRAF V600E is the most common mutation in cutaneous melanoma, occurring in approximately 50% of cases [1]. This mutation leads to constitutive activation of the MAPK signaling pathway [2].
|
|
164
|
+
|
|
165
|
+
## Treatment Landscape
|
|
166
|
+
|
|
167
|
+
Targeted therapies against BRAF V600E have significantly improved outcomes:
|
|
168
|
+
|
|
169
|
+
- **Vemurafenib**: First FDA-approved BRAF inhibitor (2011) [3]
|
|
170
|
+
- **Dabrafenib**: Second-generation BRAF inhibitor [4]
|
|
171
|
+
- **Combination therapy**: BRAF + MEK inhibition improves survival [5]
|
|
172
|
+
|
|
173
|
+
## Clinical Trials
|
|
174
|
+
|
|
175
|
+
Several ongoing trials are exploring combination approaches:
|
|
176
|
+
|
|
177
|
+
- NCT04280705: Encorafenib + cetuximab ± nivolumab in colorectal cancer [6]
|
|
178
|
+
- NCT04511078: Adjuvant dabrafenib + trametinib in melanoma [7]
|
|
179
|
+
|
|
180
|
+
## References
|
|
181
|
+
|
|
182
|
+
[1] Davies H, Bignell GR, Cox C, et al. Mutations of the BRAF gene in human cancer. Nature. 2002;417(6892):949-954. PMID: 12068308.
|
|
183
|
+
|
|
184
|
+
[2] Wan PT, Garnett MJ, Roe SM, et al. Mechanism of activation of RAF-ERK signaling by oncogenic mutations of B-RAF. Cell. 2004;116(6):855-867. PMID: 15035987.
|
|
185
|
+
|
|
186
|
+
[3] Chapman PB, Hauschild A, Robert C, et al. Improved survival with vemurafenib in melanoma with BRAF V600E mutation. N Engl J Med. 2011;364(26):2507-2516. PMID: 21639808.
|
|
187
|
+
|
|
188
|
+
[4] Hauschild A, Grob JJ, Demidov LV, et al. Dabrafenib in BRAF-mutated metastatic melanoma: a multicentre, open-label, phase 3 randomised controlled trial. Lancet. 2012;380(9839):358-365. PMID: 22735384.
|
|
189
|
+
|
|
190
|
+
[5] Robert C, Karaszewska B, Schachter J, et al. Improved overall survival in melanoma with combined dabrafenib and trametinib. N Engl J Med. 2015;372(1):30-39. PMID: 25399551.
|
|
191
|
+
|
|
192
|
+
[6] NCT04280705: A Study of Encorafenib Plus Cetuximab With or Without Nivolumab in Metastatic Colorectal Cancer. Phase 2. Sponsor: Pfizer. Status: Completed. https://clinicaltrials.gov/ct2/show/NCT04280705
|
|
193
|
+
|
|
194
|
+
[7] NCT04511078: Adjuvant Dabrafenib Plus Trametinib in Resected BRAF V600-Mutant Melanoma. Phase 3. Sponsor: Novartis. Status: Recruiting. https://clinicaltrials.gov/ct2/show/NCT04511078
|
|
195
|
+
```
|
|
196
|
+
|
|
197
|
+
## Citation Quality Standards
|
|
198
|
+
|
|
199
|
+
### What to Cite
|
|
200
|
+
|
|
201
|
+
| Source Type | Citation Required |
|
|
202
|
+
|-------------|-------------------|
|
|
203
|
+
| Published research | Yes |
|
|
204
|
+
| Clinical trial data | Yes |
|
|
205
|
+
| Drug approval info | Yes |
|
|
206
|
+
| Gene/variant annotations | Yes |
|
|
207
|
+
| Statistical claims | Yes |
|
|
208
|
+
| Direct quotes | Yes |
|
|
209
|
+
| General knowledge | No (e.g., "DNA has 4 bases") |
|
|
210
|
+
|
|
211
|
+
### Citation Integrity
|
|
212
|
+
|
|
213
|
+
1. **Verify source exists**: Always confirm PMID, NCT ID, URL is valid
|
|
214
|
+
2. **Quote accurately**: Don't misrepresent findings
|
|
215
|
+
3. **Cite primary sources**: Prefer original papers over reviews
|
|
216
|
+
4. **Update outdated citations**: Use latest evidence when available
|
|
217
|
+
|
|
218
|
+
## Tools for Citation Generation
|
|
219
|
+
|
|
220
|
+
| Tool | Use Case |
|
|
221
|
+
|------|----------|
|
|
222
|
+
| `biomcp_article_getter` | Get full article metadata from PMID |
|
|
223
|
+
| `biomcp_trial_getter` | Get trial details from NCT ID |
|
|
224
|
+
| `biomcp_gene_getter` | Get gene identifiers |
|
|
225
|
+
| `biomcp_drug_getter` | Get drug identifiers |
|
|
226
|
+
|
|
227
|
+
## Best Practices
|
|
228
|
+
|
|
229
|
+
1. **Cite as you write**: Add citations immediately when making claims
|
|
230
|
+
2. **Number sequentially**: [1], [2], [3] in order of appearance
|
|
231
|
+
3. **Include access dates**: For web sources, always include when accessed
|
|
232
|
+
4. **Verify PMIDs**: Double-check PMID matches the article
|
|
233
|
+
5. **Keep bibliography alphabetical by number**: Not by author
|
|
234
|
+
6. **Format consistently**: Same style throughout document
|