flonat-research 0.1.0
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/.claude/agents/domain-reviewer.md +336 -0
- package/.claude/agents/fixer.md +226 -0
- package/.claude/agents/paper-critic.md +370 -0
- package/.claude/agents/peer-reviewer.md +289 -0
- package/.claude/agents/proposal-reviewer.md +215 -0
- package/.claude/agents/referee2-reviewer.md +367 -0
- package/.claude/agents/references/journal-referee-profiles.md +354 -0
- package/.claude/agents/references/paper-critic/council-personas.md +77 -0
- package/.claude/agents/references/paper-critic/council-prompts.md +198 -0
- package/.claude/agents/references/peer-reviewer/report-template.md +199 -0
- package/.claude/agents/references/peer-reviewer/sa-prompts.md +260 -0
- package/.claude/agents/references/peer-reviewer/security-scan.md +188 -0
- package/.claude/agents/references/proposal-reviewer/report-template.md +144 -0
- package/.claude/agents/references/proposal-reviewer/sa-prompts.md +149 -0
- package/.claude/agents/references/referee-config.md +114 -0
- package/.claude/agents/references/referee2-reviewer/audit-checklists.md +287 -0
- package/.claude/agents/references/referee2-reviewer/report-template.md +334 -0
- package/.claude/rules/design-before-results.md +52 -0
- package/.claude/rules/ignore-agents-md.md +17 -0
- package/.claude/rules/ignore-gemini-md.md +17 -0
- package/.claude/rules/lean-claude-md.md +45 -0
- package/.claude/rules/learn-tags.md +99 -0
- package/.claude/rules/overleaf-separation.md +67 -0
- package/.claude/rules/plan-first.md +175 -0
- package/.claude/rules/read-docs-first.md +50 -0
- package/.claude/rules/scope-discipline.md +28 -0
- package/.claude/settings.json +125 -0
- package/.context/current-focus.md +33 -0
- package/.context/preferences/priorities.md +36 -0
- package/.context/preferences/task-naming.md +28 -0
- package/.context/profile.md +29 -0
- package/.context/projects/_index.md +41 -0
- package/.context/projects/papers/nudge-exp.md +22 -0
- package/.context/projects/papers/uncertainty.md +31 -0
- package/.context/resources/claude-scientific-writer-review.md +48 -0
- package/.context/resources/cunningham-multi-analyst-agents.md +104 -0
- package/.context/resources/cunningham-multilang-code-audit.md +62 -0
- package/.context/resources/google-ai-co-scientist-review.md +72 -0
- package/.context/resources/karpathy-llm-council-review.md +58 -0
- package/.context/resources/multi-coder-reliability-protocol.md +175 -0
- package/.context/resources/pedro-santanna-takeaways.md +96 -0
- package/.context/resources/venue-rankings/abs_ajg_2024.csv +1823 -0
- package/.context/resources/venue-rankings/abs_ajg_2024_econ.csv +356 -0
- package/.context/resources/venue-rankings/cabs_4_4star_theory.csv +40 -0
- package/.context/resources/venue-rankings/core_2026.csv +801 -0
- package/.context/resources/venue-rankings.md +147 -0
- package/.context/workflows/README.md +69 -0
- package/.context/workflows/daily-review.md +91 -0
- package/.context/workflows/meeting-actions.md +108 -0
- package/.context/workflows/replication-protocol.md +155 -0
- package/.context/workflows/weekly-review.md +113 -0
- package/.mcp-server-biblio/formatters.py +158 -0
- package/.mcp-server-biblio/pyproject.toml +11 -0
- package/.mcp-server-biblio/server.py +678 -0
- package/.mcp-server-biblio/sources/__init__.py +14 -0
- package/.mcp-server-biblio/sources/base.py +73 -0
- package/.mcp-server-biblio/sources/formatters.py +83 -0
- package/.mcp-server-biblio/sources/models.py +22 -0
- package/.mcp-server-biblio/sources/multi_source.py +243 -0
- package/.mcp-server-biblio/sources/openalex_source.py +183 -0
- package/.mcp-server-biblio/sources/scopus_source.py +309 -0
- package/.mcp-server-biblio/sources/wos_source.py +508 -0
- package/.mcp-server-biblio/uv.lock +896 -0
- package/.scripts/README.md +161 -0
- package/.scripts/ai_pattern_density.py +446 -0
- package/.scripts/conf +445 -0
- package/.scripts/config.py +122 -0
- package/.scripts/count_inventory.py +275 -0
- package/.scripts/daily_digest.py +288 -0
- package/.scripts/done +177 -0
- package/.scripts/extract_meeting_actions.py +223 -0
- package/.scripts/focus +176 -0
- package/.scripts/generate-codex-agents-md.py +217 -0
- package/.scripts/inbox +194 -0
- package/.scripts/notion_helpers.py +325 -0
- package/.scripts/openalex/query_helpers.py +306 -0
- package/.scripts/papers +227 -0
- package/.scripts/query +223 -0
- package/.scripts/session-history.py +201 -0
- package/.scripts/skill-health.py +516 -0
- package/.scripts/skill-log-miner.py +273 -0
- package/.scripts/sync-to-codex.sh +252 -0
- package/.scripts/task +213 -0
- package/.scripts/tasks +190 -0
- package/.scripts/week +206 -0
- package/CLAUDE.md +197 -0
- package/LICENSE +21 -0
- package/MEMORY.md +38 -0
- package/README.md +269 -0
- package/docs/agents.md +44 -0
- package/docs/bibliography-setup.md +55 -0
- package/docs/council-mode.md +36 -0
- package/docs/getting-started.md +245 -0
- package/docs/hooks.md +38 -0
- package/docs/mcp-servers.md +82 -0
- package/docs/notion-setup.md +109 -0
- package/docs/rules.md +33 -0
- package/docs/scripts.md +303 -0
- package/docs/setup-overview/setup-overview.pdf +0 -0
- package/docs/skills.md +70 -0
- package/docs/system.md +159 -0
- package/hooks/block-destructive-git.sh +66 -0
- package/hooks/context-monitor.py +114 -0
- package/hooks/postcompact-restore.py +157 -0
- package/hooks/precompact-autosave.py +181 -0
- package/hooks/promise-checker.sh +124 -0
- package/hooks/protect-source-files.sh +81 -0
- package/hooks/resume-context-loader.sh +53 -0
- package/hooks/startup-context-loader.sh +102 -0
- package/package.json +51 -0
- package/packages/cli-council/.github/workflows/claude-code-review.yml +44 -0
- package/packages/cli-council/.github/workflows/claude.yml +50 -0
- package/packages/cli-council/README.md +100 -0
- package/packages/cli-council/pyproject.toml +43 -0
- package/packages/cli-council/src/cli_council/__init__.py +19 -0
- package/packages/cli-council/src/cli_council/__main__.py +185 -0
- package/packages/cli-council/src/cli_council/backends/__init__.py +8 -0
- package/packages/cli-council/src/cli_council/backends/base.py +81 -0
- package/packages/cli-council/src/cli_council/backends/claude.py +25 -0
- package/packages/cli-council/src/cli_council/backends/codex.py +27 -0
- package/packages/cli-council/src/cli_council/backends/gemini.py +26 -0
- package/packages/cli-council/src/cli_council/checkpoint.py +212 -0
- package/packages/cli-council/src/cli_council/config.py +51 -0
- package/packages/cli-council/src/cli_council/council.py +391 -0
- package/packages/cli-council/src/cli_council/models.py +46 -0
- package/packages/llm-council/.github/workflows/claude-code-review.yml +44 -0
- package/packages/llm-council/.github/workflows/claude.yml +50 -0
- package/packages/llm-council/README.md +453 -0
- package/packages/llm-council/pyproject.toml +42 -0
- package/packages/llm-council/src/llm_council/__init__.py +23 -0
- package/packages/llm-council/src/llm_council/__main__.py +259 -0
- package/packages/llm-council/src/llm_council/checkpoint.py +193 -0
- package/packages/llm-council/src/llm_council/client.py +253 -0
- package/packages/llm-council/src/llm_council/config.py +232 -0
- package/packages/llm-council/src/llm_council/council.py +482 -0
- package/packages/llm-council/src/llm_council/models.py +46 -0
- package/packages/mcp-bibliography/MEMORY.md +31 -0
- package/packages/mcp-bibliography/_app.py +226 -0
- package/packages/mcp-bibliography/formatters.py +158 -0
- package/packages/mcp-bibliography/log/2026-03-13-2100.md +35 -0
- package/packages/mcp-bibliography/pyproject.toml +15 -0
- package/packages/mcp-bibliography/run.sh +20 -0
- package/packages/mcp-bibliography/scholarly_formatters.py +83 -0
- package/packages/mcp-bibliography/server.py +1857 -0
- package/packages/mcp-bibliography/tools/__init__.py +28 -0
- package/packages/mcp-bibliography/tools/_registry.py +19 -0
- package/packages/mcp-bibliography/tools/altmetric.py +107 -0
- package/packages/mcp-bibliography/tools/core.py +92 -0
- package/packages/mcp-bibliography/tools/dblp.py +52 -0
- package/packages/mcp-bibliography/tools/openalex.py +296 -0
- package/packages/mcp-bibliography/tools/opencitations.py +102 -0
- package/packages/mcp-bibliography/tools/openreview.py +179 -0
- package/packages/mcp-bibliography/tools/orcid.py +131 -0
- package/packages/mcp-bibliography/tools/scholarly.py +575 -0
- package/packages/mcp-bibliography/tools/unpaywall.py +63 -0
- package/packages/mcp-bibliography/tools/zenodo.py +123 -0
- package/packages/mcp-bibliography/uv.lock +711 -0
- package/scripts/setup.sh +143 -0
- package/skills/beamer-deck/SKILL.md +199 -0
- package/skills/beamer-deck/references/quality-rubric.md +54 -0
- package/skills/beamer-deck/references/review-prompts.md +106 -0
- package/skills/bib-validate/SKILL.md +261 -0
- package/skills/bib-validate/references/council-mode.md +34 -0
- package/skills/bib-validate/references/deep-verify.md +79 -0
- package/skills/bib-validate/references/fix-mode.md +36 -0
- package/skills/bib-validate/references/openalex-verification.md +45 -0
- package/skills/bib-validate/references/preprint-check.md +31 -0
- package/skills/bib-validate/references/ref-manager-crossref.md +41 -0
- package/skills/bib-validate/references/report-template.md +82 -0
- package/skills/code-archaeology/SKILL.md +141 -0
- package/skills/code-review/SKILL.md +265 -0
- package/skills/code-review/references/quality-rubric.md +67 -0
- package/skills/consolidate-memory/SKILL.md +208 -0
- package/skills/context-status/SKILL.md +126 -0
- package/skills/creation-guard/SKILL.md +230 -0
- package/skills/devils-advocate/SKILL.md +130 -0
- package/skills/devils-advocate/references/competing-hypotheses.md +83 -0
- package/skills/init-project/SKILL.md +115 -0
- package/skills/init-project-course/references/memory-and-settings.md +92 -0
- package/skills/init-project-course/references/organise-templates.md +94 -0
- package/skills/init-project-course/skill.md +147 -0
- package/skills/init-project-light/skill.md +139 -0
- package/skills/init-project-research/SKILL.md +368 -0
- package/skills/init-project-research/references/atlas-pipeline-sync.md +70 -0
- package/skills/init-project-research/references/atlas-schema.md +81 -0
- package/skills/init-project-research/references/confirmation-report.md +39 -0
- package/skills/init-project-research/references/domain-profile-template.md +104 -0
- package/skills/init-project-research/references/interview-round3.md +34 -0
- package/skills/init-project-research/references/literature-discovery.md +43 -0
- package/skills/init-project-research/references/scaffold-details.md +197 -0
- package/skills/init-project-research/templates/field-calibration.md +60 -0
- package/skills/init-project-research/templates/pipeline-manifest.md +63 -0
- package/skills/init-project-research/templates/run-all.sh +116 -0
- package/skills/init-project-research/templates/seed-files.md +337 -0
- package/skills/insights-deck/SKILL.md +151 -0
- package/skills/interview-me/SKILL.md +157 -0
- package/skills/latex/SKILL.md +141 -0
- package/skills/latex/references/latex-configs.md +183 -0
- package/skills/latex-autofix/SKILL.md +230 -0
- package/skills/latex-autofix/references/known-errors.md +183 -0
- package/skills/latex-autofix/references/quality-rubric.md +50 -0
- package/skills/latex-health-check/SKILL.md +161 -0
- package/skills/learn/SKILL.md +220 -0
- package/skills/learn/scripts/validate_skill.py +265 -0
- package/skills/lessons-learned/SKILL.md +201 -0
- package/skills/literature/SKILL.md +335 -0
- package/skills/literature/references/agent-templates.md +393 -0
- package/skills/literature/references/bibliometric-apis.md +44 -0
- package/skills/literature/references/cli-council-search.md +79 -0
- package/skills/literature/references/openalex-api-guide.md +371 -0
- package/skills/literature/references/openalex-common-queries.md +381 -0
- package/skills/literature/references/openalex-workflows.md +248 -0
- package/skills/literature/references/reference-manager-sync.md +36 -0
- package/skills/literature/references/scopus-api-guide.md +208 -0
- package/skills/literature/references/wos-api-guide.md +308 -0
- package/skills/multi-perspective/SKILL.md +311 -0
- package/skills/multi-perspective/references/computational-many-analysts.md +77 -0
- package/skills/pipeline-manifest/SKILL.md +226 -0
- package/skills/pre-submission-report/SKILL.md +153 -0
- package/skills/process-reviews/SKILL.md +244 -0
- package/skills/process-reviews/references/rr-routing.md +101 -0
- package/skills/project-deck/SKILL.md +87 -0
- package/skills/project-safety/SKILL.md +135 -0
- package/skills/proofread/SKILL.md +254 -0
- package/skills/proofread/references/quality-rubric.md +104 -0
- package/skills/python-env/SKILL.md +57 -0
- package/skills/quarto-deck/SKILL.md +226 -0
- package/skills/quarto-deck/references/markdown-format.md +143 -0
- package/skills/quarto-deck/references/quality-rubric.md +54 -0
- package/skills/save-context/SKILL.md +174 -0
- package/skills/session-log/SKILL.md +98 -0
- package/skills/shared/concept-validation-gate.md +161 -0
- package/skills/shared/council-protocol.md +265 -0
- package/skills/shared/distribution-diagnostics.md +164 -0
- package/skills/shared/engagement-stratified-sampling.md +218 -0
- package/skills/shared/escalation-protocol.md +74 -0
- package/skills/shared/external-audit-protocol.md +205 -0
- package/skills/shared/intercoder-reliability.md +256 -0
- package/skills/shared/mcp-degradation.md +81 -0
- package/skills/shared/method-probing-questions.md +163 -0
- package/skills/shared/multi-language-conventions.md +143 -0
- package/skills/shared/paid-api-safety.md +174 -0
- package/skills/shared/palettes.md +90 -0
- package/skills/shared/progressive-disclosure.md +92 -0
- package/skills/shared/project-documentation-content.md +443 -0
- package/skills/shared/project-documentation-format.md +281 -0
- package/skills/shared/project-documentation.md +100 -0
- package/skills/shared/publication-output.md +138 -0
- package/skills/shared/quality-scoring.md +70 -0
- package/skills/shared/reference-resolution.md +77 -0
- package/skills/shared/research-quality-rubric.md +165 -0
- package/skills/shared/rhetoric-principles.md +54 -0
- package/skills/shared/skill-design-patterns.md +272 -0
- package/skills/shared/skill-index.md +240 -0
- package/skills/shared/system-documentation.md +334 -0
- package/skills/shared/tikz-rules.md +402 -0
- package/skills/shared/validation-tiers.md +121 -0
- package/skills/shared/venue-guides/README.md +46 -0
- package/skills/shared/venue-guides/cell_press_style.md +483 -0
- package/skills/shared/venue-guides/conferences_formatting.md +564 -0
- package/skills/shared/venue-guides/cs_conference_style.md +463 -0
- package/skills/shared/venue-guides/examples/cell_summary_example.md +247 -0
- package/skills/shared/venue-guides/examples/medical_structured_abstract.md +313 -0
- package/skills/shared/venue-guides/examples/nature_abstract_examples.md +213 -0
- package/skills/shared/venue-guides/examples/neurips_introduction_example.md +245 -0
- package/skills/shared/venue-guides/journals_formatting.md +486 -0
- package/skills/shared/venue-guides/medical_journal_styles.md +535 -0
- package/skills/shared/venue-guides/ml_conference_style.md +556 -0
- package/skills/shared/venue-guides/nature_science_style.md +405 -0
- package/skills/shared/venue-guides/reviewer_expectations.md +417 -0
- package/skills/shared/venue-guides/venue_writing_styles.md +321 -0
- package/skills/split-pdf/SKILL.md +172 -0
- package/skills/split-pdf/methodology.md +48 -0
- package/skills/sync-notion/SKILL.md +93 -0
- package/skills/system-audit/SKILL.md +157 -0
- package/skills/system-audit/references/sub-agent-prompts.md +294 -0
- package/skills/task-management/SKILL.md +131 -0
- package/skills/update-focus/SKILL.md +204 -0
- package/skills/update-project-doc/SKILL.md +194 -0
- package/skills/validate-bib/SKILL.md +242 -0
- package/skills/validate-bib/references/council-mode.md +34 -0
- package/skills/validate-bib/references/deep-verify.md +71 -0
- package/skills/validate-bib/references/openalex-verification.md +45 -0
- package/skills/validate-bib/references/preprint-check.md +31 -0
- package/skills/validate-bib/references/report-template.md +62 -0
|
@@ -0,0 +1,313 @@
|
|
|
1
|
+
# Medical Journal Structured Abstract Examples
|
|
2
|
+
|
|
3
|
+
Examples of structured abstracts for NEJM, Lancet, JAMA, and BMJ showing the labeled section format expected at medical journals.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## NEJM Style (250 words max)
|
|
8
|
+
|
|
9
|
+
### Example 1: Clinical Trial
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
BACKGROUND
|
|
13
|
+
Sodium-glucose cotransporter 2 (SGLT2) inhibitors reduce cardiovascular
|
|
14
|
+
events in patients with type 2 diabetes and established cardiovascular
|
|
15
|
+
disease. Whether these benefits extend to patients with heart failure and
|
|
16
|
+
reduced ejection fraction, regardless of diabetes status, is unknown.
|
|
17
|
+
|
|
18
|
+
METHODS
|
|
19
|
+
We randomly assigned 4,744 patients with heart failure and an ejection
|
|
20
|
+
fraction of 40% or less to receive dapagliflozin (10 mg once daily) or
|
|
21
|
+
placebo, in addition to recommended therapy. The primary outcome was a
|
|
22
|
+
composite of worsening heart failure (hospitalization or urgent visit
|
|
23
|
+
requiring intravenous therapy) or cardiovascular death.
|
|
24
|
+
|
|
25
|
+
RESULTS
|
|
26
|
+
Over a median of 18.2 months, the primary outcome occurred in 386 of
|
|
27
|
+
2,373 patients (16.3%) in the dapagliflozin group and in 502 of 2,371
|
|
28
|
+
patients (21.2%) in the placebo group (hazard ratio, 0.74; 95% confidence
|
|
29
|
+
interval [CI], 0.65 to 0.85; P<0.001). A first worsening heart failure
|
|
30
|
+
event occurred in 237 patients (10.0%) in the dapagliflozin group and
|
|
31
|
+
in 326 patients (13.7%) in the placebo group (hazard ratio, 0.70; 95%
|
|
32
|
+
CI, 0.59 to 0.83). Death from cardiovascular causes occurred in 227
|
|
33
|
+
patients (9.6%) and 273 patients (11.5%), respectively (hazard ratio,
|
|
34
|
+
0.82; 95% CI, 0.69 to 0.98). Effects were similar in patients with and
|
|
35
|
+
without diabetes. Serious adverse events were similar between groups.
|
|
36
|
+
|
|
37
|
+
CONCLUSIONS
|
|
38
|
+
Among patients with heart failure and a reduced ejection fraction,
|
|
39
|
+
dapagliflozin reduced the risk of worsening heart failure or
|
|
40
|
+
cardiovascular death, regardless of the presence of diabetes.
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
**Key Features**:
|
|
44
|
+
- Four labeled sections (BACKGROUND, METHODS, RESULTS, CONCLUSIONS)
|
|
45
|
+
- Background: 2 sentences (problem + gap)
|
|
46
|
+
- Methods: Study design, population, intervention, primary outcome
|
|
47
|
+
- Results: Primary outcome with HR and 95% CI, key secondary outcomes
|
|
48
|
+
- Conclusions: Clear, measured statement of findings
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
### Example 2: Observational Study
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
BACKGROUND
|
|
56
|
+
Long-term use of proton-pump inhibitors (PPIs) has been associated with
|
|
57
|
+
adverse outcomes in observational studies, but causality remains uncertain.
|
|
58
|
+
The relationship between PPI use and chronic kidney disease is unclear.
|
|
59
|
+
|
|
60
|
+
METHODS
|
|
61
|
+
We conducted a prospective cohort study using data from 10,482 participants
|
|
62
|
+
in the Atherosclerosis Risk in Communities study who were free of kidney
|
|
63
|
+
disease at baseline. PPI use was ascertained at baseline and follow-up
|
|
64
|
+
visits. The primary outcome was incident chronic kidney disease, defined
|
|
65
|
+
as an estimated glomerular filtration rate less than 60 ml per minute per
|
|
66
|
+
1.73 m² of body-surface area.
|
|
67
|
+
|
|
68
|
+
RESULTS
|
|
69
|
+
Over a median follow-up of 13.9 years, incident chronic kidney disease
|
|
70
|
+
occurred in 56.0 per 1000 person-years among PPI users and in 42.0 per
|
|
71
|
+
1000 person-years among non-users (adjusted hazard ratio, 1.50; 95%
|
|
72
|
+
confidence interval [CI], 1.14 to 1.96). The association persisted after
|
|
73
|
+
adjustment for potential confounders, including indication for PPI use
|
|
74
|
+
and baseline kidney function. Sensitivity analyses using propensity-score
|
|
75
|
+
matching yielded similar results. No association was observed for
|
|
76
|
+
histamine H2-receptor antagonist use (hazard ratio, 1.08; 95% CI, 0.87
|
|
77
|
+
to 1.34).
|
|
78
|
+
|
|
79
|
+
CONCLUSIONS
|
|
80
|
+
PPI use was associated with an increased risk of incident chronic kidney
|
|
81
|
+
disease in this community-based cohort. These findings warrant cautious
|
|
82
|
+
use of PPIs and further investigation to establish causality.
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
**Key Features**:
|
|
86
|
+
- Appropriate hedging for observational study ("associated with")
|
|
87
|
+
- Incidence rates provided (per 1000 person-years)
|
|
88
|
+
- Sensitivity analyses mentioned
|
|
89
|
+
- Negative control (H2-receptor antagonists)
|
|
90
|
+
- Cautious conclusion acknowledging limitation
|
|
91
|
+
|
|
92
|
+
---
|
|
93
|
+
|
|
94
|
+
## Lancet Style (300 words max)
|
|
95
|
+
|
|
96
|
+
### Example 3: Clinical Trial with Summary Box
|
|
97
|
+
|
|
98
|
+
```
|
|
99
|
+
BACKGROUND
|
|
100
|
+
Dexamethasone has been shown to reduce mortality in hospitalized patients
|
|
101
|
+
with COVID-19 requiring respiratory support. We aimed to evaluate whether
|
|
102
|
+
higher doses of corticosteroids would provide additional benefit in
|
|
103
|
+
patients with severe COVID-19 pneumonia.
|
|
104
|
+
|
|
105
|
+
METHODS
|
|
106
|
+
In this randomized, controlled, open-label trial conducted at 18 hospitals
|
|
107
|
+
in Brazil, we assigned patients with moderate-to-severe COVID-19 (PaO2/FiO2
|
|
108
|
+
≤200 mm Hg) to receive high-dose dexamethasone (20 mg once daily for 5
|
|
109
|
+
days, then 10 mg once daily for 5 days) or standard dexamethasone (6 mg
|
|
110
|
+
once daily for 10 days). The primary outcome was ventilator-free days
|
|
111
|
+
at 28 days.
|
|
112
|
+
|
|
113
|
+
FINDINGS
|
|
114
|
+
Between June 17, 2020, and September 20, 2021, we enrolled 299 patients
|
|
115
|
+
(151 assigned to high-dose dexamethasone and 148 to standard
|
|
116
|
+
dexamethasone). The mean number of ventilator-free days at 28 days was
|
|
117
|
+
14·2 (SD 10·8) in the high-dose group and 15·5 (SD 10·4) in the standard
|
|
118
|
+
group (difference, −1·3 days; 95% CI, −3·9 to 1·3; P=0·32). There was
|
|
119
|
+
no significant difference in 28-day mortality (high dose 35·8% vs
|
|
120
|
+
standard 31·8%; hazard ratio 1·16; 95% CI, 0·79 to 1·70). Hyperglycemia
|
|
121
|
+
requiring insulin was more frequent with high-dose dexamethasone (66·0%
|
|
122
|
+
vs 53·4%; P=0·027).
|
|
123
|
+
|
|
124
|
+
INTERPRETATION
|
|
125
|
+
In patients with moderate-to-severe COVID-19 pneumonia, high-dose
|
|
126
|
+
dexamethasone did not improve ventilator-free days and was associated
|
|
127
|
+
with increased hyperglycemia compared with standard-dose dexamethasone.
|
|
128
|
+
These findings do not support the use of high-dose corticosteroids in
|
|
129
|
+
COVID-19.
|
|
130
|
+
|
|
131
|
+
FUNDING
|
|
132
|
+
Ministry of Health of Brazil.
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
**Key Features**:
|
|
136
|
+
- Lancet uses "Findings" instead of "Results"
|
|
137
|
+
- Lancet uses "Interpretation" instead of "Conclusions"
|
|
138
|
+
- Includes funding statement in abstract
|
|
139
|
+
- Decimal point (·) instead of period in numbers (Lancet style)
|
|
140
|
+
|
|
141
|
+
---
|
|
142
|
+
|
|
143
|
+
## JAMA Style (350 words max)
|
|
144
|
+
|
|
145
|
+
### Example 4: Diagnostic Study
|
|
146
|
+
|
|
147
|
+
```
|
|
148
|
+
IMPORTANCE
|
|
149
|
+
Lung cancer screening with low-dose computed tomography (CT) reduces
|
|
150
|
+
mortality but identifies many indeterminate pulmonary nodules, leading
|
|
151
|
+
to unnecessary invasive procedures. Improved risk prediction could
|
|
152
|
+
reduce harms while preserving benefits.
|
|
153
|
+
|
|
154
|
+
OBJECTIVE
|
|
155
|
+
To develop and validate a deep learning model for predicting malignancy
|
|
156
|
+
risk of lung nodules detected on screening CT.
|
|
157
|
+
|
|
158
|
+
DESIGN, SETTING, AND PARTICIPANTS
|
|
159
|
+
This retrospective cohort study included 14,851 participants with
|
|
160
|
+
lung nodules from the National Lung Screening Trial (NLST) for model
|
|
161
|
+
development and 5,402 participants from an independent multi-site
|
|
162
|
+
validation cohort (2016-2019). Data analysis was performed from
|
|
163
|
+
January to November 2022.
|
|
164
|
+
|
|
165
|
+
EXPOSURES
|
|
166
|
+
Deep learning model prediction of malignancy risk based on CT imaging.
|
|
167
|
+
|
|
168
|
+
MAIN OUTCOMES AND MEASURES
|
|
169
|
+
The primary outcome was lung cancer diagnosis within 2 years. Model
|
|
170
|
+
performance was assessed by area under the receiver operating
|
|
171
|
+
characteristic curve (AUC), sensitivity, specificity, and comparison
|
|
172
|
+
with radiologist assessments.
|
|
173
|
+
|
|
174
|
+
RESULTS
|
|
175
|
+
In the validation cohort (median age, 65 years; 57% male), 312 nodules
|
|
176
|
+
(5.8%) were diagnosed as lung cancer within 2 years. The deep learning
|
|
177
|
+
model achieved an AUC of 0.94 (95% CI, 0.92-0.96), compared with 0.85
|
|
178
|
+
(95% CI, 0.82-0.88) for the Lung-RADS categorization used by radiologists
|
|
179
|
+
(P<0.001). At 95% sensitivity, the model achieved 68% specificity compared
|
|
180
|
+
with 38% for Lung-RADS, corresponding to a 49% reduction in false-positive
|
|
181
|
+
nodules requiring follow-up. The model's performance was consistent across
|
|
182
|
+
subgroups defined by nodule size, location, and patient demographics.
|
|
183
|
+
|
|
184
|
+
CONCLUSIONS AND RELEVANCE
|
|
185
|
+
A deep learning model for lung nodule malignancy prediction outperformed
|
|
186
|
+
current clinical standards and could substantially reduce false-positive
|
|
187
|
+
findings in lung cancer screening, decreasing unnecessary surveillance
|
|
188
|
+
and invasive procedures.
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
**Key Features**:
|
|
192
|
+
- JAMA-specific sections (IMPORTANCE, OBJECTIVE, DESIGN...)
|
|
193
|
+
- "Importance" section required (2-3 sentences on why this matters)
|
|
194
|
+
- Detailed design section
|
|
195
|
+
- "Exposures" clearly stated
|
|
196
|
+
- "Main Outcomes and Measures" explicit
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## BMJ Style (300 words max)
|
|
201
|
+
|
|
202
|
+
### Example 5: Cohort Study
|
|
203
|
+
|
|
204
|
+
```
|
|
205
|
+
OBJECTIVE
|
|
206
|
+
To examine the association between statin use and risk of Parkinson's
|
|
207
|
+
disease in a large population-based cohort.
|
|
208
|
+
|
|
209
|
+
DESIGN
|
|
210
|
+
Prospective cohort study.
|
|
211
|
+
|
|
212
|
+
SETTING
|
|
213
|
+
UK Biobank, 2006-2021.
|
|
214
|
+
|
|
215
|
+
PARTICIPANTS
|
|
216
|
+
402,251 adults aged 40-69 years without Parkinson's disease at baseline.
|
|
217
|
+
|
|
218
|
+
MAIN OUTCOME MEASURES
|
|
219
|
+
Incident Parkinson's disease identified through hospital admissions,
|
|
220
|
+
primary care records, and death certificates. Hazard ratios were
|
|
221
|
+
estimated using Cox regression, adjusted for age, sex, education,
|
|
222
|
+
smoking, alcohol, physical activity, body mass index, and comorbidities.
|
|
223
|
+
|
|
224
|
+
RESULTS
|
|
225
|
+
Over a median follow-up of 12.3 years, 2,841 participants developed
|
|
226
|
+
Parkinson's disease (incidence rate 5.7 per 10,000 person-years).
|
|
227
|
+
Statin use at baseline was not associated with incident Parkinson's
|
|
228
|
+
disease (adjusted hazard ratio 0.95, 95% confidence interval 0.87 to
|
|
229
|
+
1.04). Results were consistent across analyses stratified by statin
|
|
230
|
+
type (lipophilic vs hydrophilic), dose, and duration of use, and in
|
|
231
|
+
sensitivity analyses accounting for reverse causation. No protective
|
|
232
|
+
association was observed in analyses restricted to participants with
|
|
233
|
+
high cardiovascular risk or in propensity-score matched cohorts.
|
|
234
|
+
|
|
235
|
+
CONCLUSIONS
|
|
236
|
+
In this large prospective cohort, statin use was not associated with
|
|
237
|
+
reduced risk of Parkinson's disease, contrary to findings from some
|
|
238
|
+
previous observational studies. The null findings were robust across
|
|
239
|
+
multiple sensitivity analyses. These results do not support a
|
|
240
|
+
neuroprotective effect of statins against Parkinson's disease.
|
|
241
|
+
|
|
242
|
+
WHAT IS ALREADY KNOWN ON THIS TOPIC
|
|
243
|
+
Previous observational studies have yielded inconsistent results
|
|
244
|
+
regarding statin use and Parkinson's disease risk.
|
|
245
|
+
|
|
246
|
+
WHAT THIS STUDY ADDS
|
|
247
|
+
This large prospective study with long follow-up found no evidence
|
|
248
|
+
that statin use protects against Parkinson's disease.
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**Key Features**:
|
|
252
|
+
- BMJ uses abbreviated section headers
|
|
253
|
+
- Includes "What is already known" and "What this study adds" boxes
|
|
254
|
+
- Design, Setting, and Participants as separate sections
|
|
255
|
+
- Clear Main Outcome Measures section
|
|
256
|
+
|
|
257
|
+
---
|
|
258
|
+
|
|
259
|
+
## Key Differences Between Journals
|
|
260
|
+
|
|
261
|
+
| Element | NEJM | Lancet | JAMA | BMJ |
|
|
262
|
+
|---------|------|--------|------|-----|
|
|
263
|
+
| **Word limit** | 250 | 300 | 350 | 300 |
|
|
264
|
+
| **Results label** | RESULTS | FINDINGS | RESULTS | RESULTS |
|
|
265
|
+
| **Conclusions label** | CONCLUSIONS | INTERPRETATION | CONCLUSIONS AND RELEVANCE | CONCLUSIONS |
|
|
266
|
+
| **Unique sections** | — | Funding in abstract | IMPORTANCE | What is known/adds |
|
|
267
|
+
| **Decimal style** | Period (.) | Centered dot (·) | Period (.) | Period (.) |
|
|
268
|
+
|
|
269
|
+
---
|
|
270
|
+
|
|
271
|
+
## Essential Elements for All Medical Abstracts
|
|
272
|
+
|
|
273
|
+
### Background/Context
|
|
274
|
+
- Disease burden or clinical problem (1 sentence)
|
|
275
|
+
- Knowledge gap or rationale for study (1 sentence)
|
|
276
|
+
|
|
277
|
+
### Methods
|
|
278
|
+
- Study design (RCT, cohort, case-control)
|
|
279
|
+
- Setting (number of sites, country/region)
|
|
280
|
+
- Participants (N, key inclusion criteria)
|
|
281
|
+
- Intervention or exposure
|
|
282
|
+
- Primary outcome with definition
|
|
283
|
+
|
|
284
|
+
### Results
|
|
285
|
+
- Number enrolled and analyzed
|
|
286
|
+
- Primary outcome with effect size and 95% CI
|
|
287
|
+
- Key secondary outcomes
|
|
288
|
+
- P-values for primary comparisons
|
|
289
|
+
- Adverse events (if applicable)
|
|
290
|
+
|
|
291
|
+
### Conclusions
|
|
292
|
+
- Clear statement of main finding
|
|
293
|
+
- Appropriate hedging based on study design
|
|
294
|
+
- Clinical implication (optional, 1 sentence)
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
## Common Mistakes in Medical Abstracts
|
|
299
|
+
|
|
300
|
+
❌ **Missing confidence intervals**: "HR 0.75, P=0.02" → include 95% CI
|
|
301
|
+
❌ **Relative risk only**: Add absolute risk reduction, NNT
|
|
302
|
+
❌ **Causal language for observational studies**: "PPIs cause kidney disease"
|
|
303
|
+
❌ **Overstated conclusions**: Claims exceeding evidence
|
|
304
|
+
❌ **Missing sample sizes**: Always include N for each group
|
|
305
|
+
❌ **Vague outcomes**: "Improved outcomes" without specific definition
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## See Also
|
|
310
|
+
|
|
311
|
+
- `medical_journal_styles.md` - Comprehensive medical writing guide
|
|
312
|
+
- `venue_writing_styles.md` - Style comparison across venues
|
|
313
|
+
|
|
@@ -0,0 +1,213 @@
|
|
|
1
|
+
# Nature/Science Abstract Examples
|
|
2
|
+
|
|
3
|
+
Examples of well-crafted abstracts for high-impact multidisciplinary journals. These demonstrate the flowing paragraph style with broad accessibility expected at Nature, Science, and related venues.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Example 1: Molecular Biology / Cell Biology
|
|
8
|
+
|
|
9
|
+
**Topic**: CRISPR gene editing discovery
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
The ability to precisely edit DNA sequences in living cells has transformed
|
|
13
|
+
biological research and holds promise for treating genetic diseases. However,
|
|
14
|
+
current genome editing tools can introduce unwanted mutations at off-target
|
|
15
|
+
sites, limiting their clinical potential. Here we describe prime editing, a
|
|
16
|
+
versatile and precise genome editing method that directly writes new genetic
|
|
17
|
+
information into a specified DNA site using a reverse transcriptase fused to a
|
|
18
|
+
CRISPR nickase. Prime editing can make all 12 types of point mutations, as
|
|
19
|
+
well as small insertions and deletions, with minimal off-target editing and
|
|
20
|
+
without requiring double-strand breaks or donor DNA templates. In human cells,
|
|
21
|
+
we used prime editing to correct the primary genetic causes of sickle cell
|
|
22
|
+
disease and Tay-Sachs disease, and to install protective mutations that
|
|
23
|
+
reduce risk of prion disease. Prime editing expands the scope and capabilities
|
|
24
|
+
of genome editing and may address approximately 89% of known human genetic
|
|
25
|
+
disease variants.
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**Why this works**:
|
|
29
|
+
- Opens with broad significance (genetic disease treatment)
|
|
30
|
+
- States the problem clearly (off-target mutations)
|
|
31
|
+
- Describes the approach accessibly ("writes new genetic information")
|
|
32
|
+
- Includes specific results (all 12 point mutations, specific diseases)
|
|
33
|
+
- Ends with quantified impact (89% of variants)
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Example 2: Neuroscience
|
|
38
|
+
|
|
39
|
+
**Topic**: Memory consolidation mechanism
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
Sleep is essential for memory consolidation, yet how the sleeping brain
|
|
43
|
+
transforms labile memories into stable long-term representations remains
|
|
44
|
+
poorly understood. We used multi-site electrophysiology in freely behaving
|
|
45
|
+
mice to record the activity of thousands of neurons across hippocampus and
|
|
46
|
+
cortex during learning and subsequent sleep. We discovered that specific
|
|
47
|
+
neurons that encode a newly learned memory reactivate in precisely timed
|
|
48
|
+
sequences during slow-wave sleep, with hippocampal reactivation preceding
|
|
49
|
+
cortical reactivation by 10-15 milliseconds. Optogenetic disruption of this
|
|
50
|
+
temporal coordination impaired memory retention by 78%, whereas artificial
|
|
51
|
+
enhancement of the temporal relationship strengthened memories beyond normal
|
|
52
|
+
levels. These results reveal that the temporal ordering of hippocampal-cortical
|
|
53
|
+
replay is not merely correlative but causally necessary for memory
|
|
54
|
+
consolidation. Our findings suggest new therapeutic approaches for memory
|
|
55
|
+
disorders based on optimizing the temporal dynamics of sleep.
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
**Why this works**:
|
|
59
|
+
- Connects to well-known phenomenon (sleep and memory)
|
|
60
|
+
- States what was unknown
|
|
61
|
+
- Describes approach (multi-site recordings)
|
|
62
|
+
- Key finding with specific number (10-15 ms)
|
|
63
|
+
- Causal evidence (disruption and enhancement experiments)
|
|
64
|
+
- Broader implications (therapeutic approaches)
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Example 3: Climate Science
|
|
69
|
+
|
|
70
|
+
**Topic**: Carbon cycle feedback
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
Arctic permafrost contains approximately 1,500 billion tonnes of organic
|
|
74
|
+
carbon—twice the amount currently in the atmosphere. As the Arctic warms,
|
|
75
|
+
this carbon may be released to the atmosphere, accelerating global warming
|
|
76
|
+
through a positive feedback loop. However, the magnitude and timing of this
|
|
77
|
+
feedback remain highly uncertain because microbial decomposition rates in
|
|
78
|
+
thawing permafrost are poorly constrained. Here we present a 15-year
|
|
79
|
+
field experiment across 25 sites spanning the Arctic, tracking carbon
|
|
80
|
+
fluxes in warming permafrost under natural conditions. We find that
|
|
81
|
+
microbial respiration increases exponentially with temperature until soils
|
|
82
|
+
reach 3°C, then plateaus due to substrate limitation—a threshold effect
|
|
83
|
+
not captured by current Earth system models. Our results suggest that
|
|
84
|
+
permafrost carbon feedback will be 30-50% lower than current projections
|
|
85
|
+
during this century, providing more time to limit warming, but will
|
|
86
|
+
accelerate dramatically if deep permafrost begins to thaw.
|
|
87
|
+
```
|
|
88
|
+
|
|
89
|
+
**Why this works**:
|
|
90
|
+
- Opens with striking number (1,500 billion tonnes)
|
|
91
|
+
- Clear problem statement (feedback uncertainty)
|
|
92
|
+
- Specific methodology (15 years, 25 sites)
|
|
93
|
+
- Novel finding (threshold at 3°C)
|
|
94
|
+
- Implications both reassuring and cautionary
|
|
95
|
+
|
|
96
|
+
---
|
|
97
|
+
|
|
98
|
+
## Example 4: Physics / Materials Science
|
|
99
|
+
|
|
100
|
+
**Topic**: Room-temperature superconductivity
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
Superconductivity—the flow of electricity without resistance—has been
|
|
104
|
+
confined to extremely low temperatures since its discovery over a century
|
|
105
|
+
ago, limiting practical applications. The recent demonstration of
|
|
106
|
+
superconductivity in hydrogen-rich materials at high pressure has raised
|
|
107
|
+
hopes for higher transition temperatures, but achieving room-temperature
|
|
108
|
+
superconductivity at ambient pressure has remained elusive. Here we report
|
|
109
|
+
superconductivity at 21°C (294 K) in a nitrogen-doped lutetium hydride
|
|
110
|
+
(Lu-N-H) compound at pressures of approximately 1 GPa—nearly ambient
|
|
111
|
+
conditions. Electrical resistance drops to zero below the transition
|
|
112
|
+
temperature with a sharp transition width of 2 K, and we observe the Meissner
|
|
113
|
+
effect confirming bulk superconductivity. Density functional theory
|
|
114
|
+
calculations suggest that nitrogen incorporation stabilizes the high-symmetry
|
|
115
|
+
structure that enables strong electron-phonon coupling. These results
|
|
116
|
+
establish a pathway toward practical room-temperature superconductors.
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
**Why this works**:
|
|
120
|
+
- Opens with accessible explanation of significance
|
|
121
|
+
- Historical context (century-old limitation)
|
|
122
|
+
- Precise results (21°C, 1 GPa, 2 K transition width)
|
|
123
|
+
- Multiple lines of evidence (resistance + Meissner effect)
|
|
124
|
+
- Theoretical explanation briefly included
|
|
125
|
+
- Forward-looking conclusion
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
## Example 5: Evolution / Ecology
|
|
130
|
+
|
|
131
|
+
**Topic**: Rapid evolution in response to climate
|
|
132
|
+
|
|
133
|
+
```
|
|
134
|
+
Climate change is driving rapid shifts in the geographic distributions of
|
|
135
|
+
species, but whether organisms can adapt quickly enough to keep pace with
|
|
136
|
+
warming remains a critical question for biodiversity conservation. Here we
|
|
137
|
+
document real-time evolution in wild populations of a widespread forest tree,
|
|
138
|
+
Scots pine, along a 1,000 km latitudinal gradient in Scandinavia. By combining
|
|
139
|
+
whole-genome sequencing with phenotypic measurements across 25 common gardens,
|
|
140
|
+
we detect signatures of selection at 47 loci associated with cold tolerance,
|
|
141
|
+
phenology, and drought resistance over just 50 years—approximately
|
|
142
|
+
five tree generations. Alleles conferring warmer-adapted phenotypes have
|
|
143
|
+
increased in frequency by 4-12% across northern populations, matching
|
|
144
|
+
predictions from models of climate-driven selection. However, migration of
|
|
145
|
+
warm-adapted genotypes from the south appears limited by geographic barriers.
|
|
146
|
+
These results demonstrate that trees can evolve rapidly in response to
|
|
147
|
+
climate change but suggest that assisted gene flow may be necessary to
|
|
148
|
+
prevent local maladaptation.
|
|
149
|
+
```
|
|
150
|
+
|
|
151
|
+
**Why this works**:
|
|
152
|
+
- Opens with pressing question (climate adaptation)
|
|
153
|
+
- Specific system (Scots pine) and scale (1,000 km)
|
|
154
|
+
- Methods described briefly (genomics + common gardens)
|
|
155
|
+
- Quantitative results (47 loci, 4-12% frequency shift, 5 generations)
|
|
156
|
+
- Mechanism identified (limited migration)
|
|
157
|
+
- Conservation implications stated
|
|
158
|
+
|
|
159
|
+
---
|
|
160
|
+
|
|
161
|
+
## Common Elements Across Examples
|
|
162
|
+
|
|
163
|
+
### Structure (Implicit)
|
|
164
|
+
1. **Hook**: Why this matters broadly (1-2 sentences)
|
|
165
|
+
2. **Gap**: What was unknown or problematic (1 sentence)
|
|
166
|
+
3. **Approach**: What was done (1 sentence)
|
|
167
|
+
4. **Findings**: Key results with numbers (2-3 sentences)
|
|
168
|
+
5. **Significance**: Why this matters going forward (1 sentence)
|
|
169
|
+
|
|
170
|
+
### Style Features
|
|
171
|
+
- **Active voice**: "We discovered," "We find," "We report"
|
|
172
|
+
- **Specific numbers**: Exact values, not vague quantities
|
|
173
|
+
- **Accessible language**: Minimal jargon, explained when needed
|
|
174
|
+
- **Compelling opening**: Broad hook before technical details
|
|
175
|
+
- **Strong close**: Implications or future directions
|
|
176
|
+
|
|
177
|
+
### Word Count
|
|
178
|
+
- Nature: 150-200 words (examples above: 185-210 words)
|
|
179
|
+
- Science: ≤125 words (would need tightening)
|
|
180
|
+
|
|
181
|
+
---
|
|
182
|
+
|
|
183
|
+
## What to Avoid
|
|
184
|
+
|
|
185
|
+
❌ **Too technical opening**:
|
|
186
|
+
> "The CRISPR-Cas9 system with guide RNA targeting PAM sequences..."
|
|
187
|
+
|
|
188
|
+
✅ **Better opening**:
|
|
189
|
+
> "The ability to precisely edit DNA in living cells..."
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
❌ **Vague results**:
|
|
194
|
+
> "Our method significantly outperformed existing approaches..."
|
|
195
|
+
|
|
196
|
+
✅ **Better results**:
|
|
197
|
+
> "Our method reduced off-target editing by 78% compared to standard Cas9..."
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
❌ **Weak significance statement**:
|
|
202
|
+
> "These findings may have implications for the field..."
|
|
203
|
+
|
|
204
|
+
✅ **Better significance**:
|
|
205
|
+
> "These findings suggest new therapeutic approaches for memory disorders..."
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
## See Also
|
|
210
|
+
|
|
211
|
+
- `nature_science_style.md` - Comprehensive Nature/Science writing guide
|
|
212
|
+
- `venue_writing_styles.md` - Style comparison across venues
|
|
213
|
+
|