Literature Review
Overview
Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats.
This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and document generation.
When to Use This Skill
Use this skill when:
- Conducting a systematic literature review for research or publication
- Synthesizing current knowledge on a specific topic across multiple sources
- Performing meta-analysis or scoping reviews
- Writing the literature review section of a research paper or thesis
- Investigating the state of the art in a research domain
- Identifying research gaps and future directions
- Requiring verified citations and professional formatting
Core Workflow
Literature reviews follow a structured, multi-phase workflow:
Phase 1: Planning and Scoping
Define Research Question: Use PICO framework (Population, Intervention, Comparison, Outcome) for clinical/biomedical reviews
- Example: "What is the efficacy of CRISPR-Cas9 (I) for treating sickle cell disease (P) compared to standard care (C)?"
Establish Scope and Objectives:
- Define clear, specific research questions
- Determine review type (narrative, systematic, scoping, meta-analysis)
- Set boundaries (time period, geographic scope, study types)
Develop Search Strategy:
- Identify 2-4 main concepts from research question
- List synonyms, abbreviations, and related terms for each concept
- Plan Boolean operators (AND, OR, NOT) to combine terms
- Select minimum 3 complementary databases
Set Inclusion/Exclusion Criteria:
- Date range (e.g., last 10 years: 2015-2024)
- Language (typically English, or specify multilingual)
- Publication types (peer-reviewed, preprints, reviews)
- Study designs (RCTs, observational, in vitro, etc.)
- Document all criteria clearly
Phase 2: Systematic Literature Search
Multi-Database Search:
Select databases appropriate for the domain:
Biomedical & Life Sciences:
- Use
gget skill: gget search pubmed "search terms" for PubMed/PMC
- Use
gget skill: gget search biorxiv "search terms" for preprints
- Use
bioservices skill for ChEMBL, KEGG, UniProt, etc.
General Scientific Literature:
- Search arXiv via direct API (preprints in physics, math, CS, q-bio)
- Search Semantic Scholar via API (200M+ papers, cross-disciplinary)
- Use Google Scholar for comprehensive coverage (manual or careful scraping)
Specialized Databases:
- Use
gget alphafold for protein structures
- Use
gget cosmic for cancer genomics
- Use
datacommons-client for demographic/statistical data
- Use specialized databases as appropriate for the domain
Document Search Parameters:
## Search Strategy
### Database: PubMed
- **Date searched**: 2024-10-25
- **Date range**: 2015-01-01 to 2024-10-25
- **Search string**:
("CRISPR"[Title] OR "Cas9"[Title])
AND ("sickle cell"[MeSH] OR "SCD"[Title/Abstract])
AND 2015:2024[Publication Date]
- **Results**: 247 articles
Repeat for each database searched.
Export and Aggregate Results:
Phase 3: Screening and Selection
Deduplication:
python search_databases.py results.json --deduplicate --output unique_results.json
- Removes duplicates by DOI (primary) or title (fallback)
- Document number of duplicates removed
Title Screening:
- Review all titles against inclusion/exclusion criteria
- Exclude obviously irrelevant studies
- Document number excluded at this stage
Abstract Screening:
- Read abstracts of remaining studies
- Apply inclusion/exclusion criteria rigorously
- Document reasons for exclusion
Full-Text Screening:
- Obtain full texts of remaining studies
- Conduct detailed review against all criteria
- Document specific reasons for exclusion
- Record final number of included studies
Create PRISMA Flow Diagram:
Initial search: n = X
├─ After deduplication: n = Y
├─ After title screening: n = Z
├─ After abstract screening: n = A
└─ Included in review: n = B
Phase 4: Data Extraction and Quality Assessment
Extract Key Data from each included study:
- Study metadata (authors, year, journal, DOI)
- Study design and methods
- Sample size and population characteristics
- Key findings and results
- Limitations noted by authors
- Funding sources and conflicts of interest
Assess Study Quality:
- For RCTs: Use Cochrane Risk of Bias tool
- For observational studies: Use Newcastle-Ottawa Scale
- For systematic reviews: Use AMSTAR 2
- Rate each study: High, Moderate, Low, or Very Low quality
- Consider excluding very low-quality studies
Organize by Themes:
- Identify 3-5 major themes across studies
- Group studies by theme (studies may appear in multiple themes)
- Note patterns, consensus, and controversies
Phase 5: Synthesis and Analysis
Create Review Document from template:
cp assets/review_template.md my_literature_review.md
Write Thematic Synthesis (NOT study-by-study summaries):
- Organize Results section by themes or research questions
- Synthesize findings across multiple studies within each theme
- Compare and contrast different approaches and results
- Identify consensus areas and points of controversy
- Highlight the strongest evidence
Example structure:
#### 3.3.1 Theme: CRISPR Delivery Methods
Multiple delivery approaches have been investigated for therapeutic
gene editing. Viral vectors (AAV) were used in 15 studies^1-15^ and
showed high transduction efficiency (65-85%) but raised immunogenicity
concerns^3,7,12^. In contrast, lipid nanoparticles demonstrated lower
efficiency (40-60%) but improved safety profiles^16-23^.
Critical Analysis:
- Evaluate methodological strengths and limitations across studies
- Assess quality and consistency of evidence
- Identify knowledge gaps and methodological gaps
- Note areas requiring future research
Write Discussion:
- Interpret findings in broader context
- Discuss clinical, practical, or research implications
- Acknowledge limitations of the review itself
- Compare with previous reviews if applicable
- Propose specific future research directions
Phase 6: Citation Verification
CRITICAL: All citations must be verified for accuracy before final submission.
Verify All DOIs:
python scripts/verify_citations.py my_literature_review.md
This script:
- Extracts all DOIs from the document
- Verifies each DOI resolves correctly
- Retrieves metadata from CrossRef
- Generates verification report
- Outputs properly formatted citations
Review Verification Report:
- Check for any failed DOIs
- Verify author names, titles, and publication details match
- Correct any errors in the original document
- Re-run verification until all citations pass
Format Citations Consistently:
- Choose one citation style and use throughout (see
references/citation_styles.md)
- Common styles: APA, Nature, Vancouver, Chicago, IEEE
- Use verification script output to format citations correctly
- Ensure in-text citations match reference list format
Phase 7: Document Generation
Generate PDF:
python scripts/generate_pdf.py my_literature_review.md \
--citation-style apa \
--output my_review.pdf
Options:
--citation-style: apa, nature, chicago, vancouver, ieee
--no-toc: Disable table of contents
--no-numbers: Disable section numbering
--check-deps: Check if pandoc/xelatex are installed
Review Final Output:
- Check PDF formatting and layout
- Verify all sections are present
- Ensure citations render correctly
- Check that figures/tables appear properly
- Verify table of contents is accurate
Quality Checklist:
Database-Specific Search Guidance
PubMed / PubMed Central
Access via gget skill:
# Search PubMed
gget search pubmed "CRISPR gene editing" -l 100
# Search with filters
# Use PubMed Advanced Search Builder to construct complex queries
# Then execute via gget or direct Entrez API
Search tips:
- Use MeSH terms:
"sickle cell disease"[MeSH]
- Field tags:
[Title], [Title/Abstract], [Author]
- Date filters:
2020:2024[Publication Date]
- Boolean operators: AND, OR, NOT
- See MeSH browser: https://meshb.nlm.nih.gov/search
bioRxiv / medRxiv
Access via gget skill:
gget search biorxiv "CRISPR sickle cell" -l 50
Important considerations:
- Preprints are not peer-reviewed
- Verify findings with caution
- Check if preprint has been published (CrossRef)
- Note preprint version and date
arXiv
Access via direct API or WebFetch:
# Example search categories:
# q-bio.QM (Quantitative Methods)
# q-bio.GN (Genomics)
# q-bio.MN (Molecular Networks)
# cs.LG (Machine Learning)
# stat.ML (Machine Learning Statistics)
# Search format: category AND terms
search_query = "cat:q-bio.QM AND ti:\"single cell sequencing\""
Semantic Scholar
Access via direct API (requires API key, or use free tier):
- 200M+ papers across all fields
- Excellent for cross-disciplinary searches
- Provides citation graphs and paper recommendations
- Use for finding highly influential papers
Specialized Biomedical Databases
Use appropriate skills:
- ChEMBL:
bioservices skill for chemical bioactivity
- UniProt:
gget or bioservices skill for protein information
- KEGG:
bioservices skill for pathways and genes
- COSMIC:
gget skill for cancer mutations
- AlphaFold:
gget alphafold for protein structures
- PDB:
gget or direct API for experimental structures
Citation Chaining
Expand search via citation networks:
Forward citations (papers citing key papers):
- Use Google Scholar "Cited by"
- Use Semantic Scholar or OpenAlex APIs
- Identifies newer research building on seminal work
Backward citations (references from key papers):
- Extract references from included papers
- Identify highly cited foundational work
- Find papers cited by multiple included studies
Citation Style Guide
Detailed formatting guidelines are in references/citation_styles.md. Quick reference:
APA (7th Edition)
- In-text: (Smith et al., 2023)
- Reference: Smith, J. D., Johnson, M. L., & Williams, K. R. (2023). Title. Journal, 22(4), 301-318. https://doi.org/10.xxx/yyy
Nature
- In-text: Superscript numbers^1,2^
- Reference: Smith, J. D., Johnson, M. L. & Williams, K. R. Title. Nat. Rev. Drug Discov. 22, 301-318 (2023).
Vancouver
- In-text: Superscript numbers^1,2^
- Reference: Smith JD, Johnson ML, Williams KR. Title. Nat Rev Drug Discov. 2023;22(4):301-18.
Always verify citations with verify_citations.py before finalizing.
Best Practices
Search Strategy
- Use multiple databases (minimum 3): Ensures comprehensive coverage
- Include preprint servers: Captures latest unpublished findings
- Document everything: Search strings, dates, result counts for reproducibility
- Test and refine: Run pilot searches, review results, adjust search terms
Screening and Selection
- Use clear criteria: Document inclusion/exclusion criteria before screening
- Screen systematically: Title → Abstract → Full text
- Document exclusions: Record reasons for excluding studies
- Consider dual screening: For systematic reviews, have two reviewers screen independently
Synthesis
- Organize thematically: Group by themes, NOT by individual studies
- Synthesize across studies: Compare, contrast, identify patterns
- Be critical: Evaluate quality and consistency of evidence
- Identify gaps: Note what's missing or understudied
Quality and Reproducibility
- Assess study quality: Use appropriate quality assessment tools
- Verify all citations: Run verify_citations.py script
- Document methodology: Provide enough detail for others to reproduce
- Follow guidelines: Use PRISMA for systematic reviews
Writing
- Be objective: Present evidence fairly, acknowledge limitations
- Be systematic: Follow structured template
- Be specific: Include numbers, statistics, effect sizes where available
- Be clear: Use clear headings, logical flow, thematic organization
Common Pitfalls to Avoid
- Single database search: Misses relevant papers; always search multiple databases
- No search documentation: Makes review irreproducible; document all searches
- Study-by-study summary: Lacks synthesis; organize thematically instead
- Unverified citations: Leads to errors; always run verify_citations.py
- Too broad search: Yields thousands of irrelevant results; refine with specific terms
- Too narrow search: Misses relevant papers; include synonyms and related terms
- Ignoring preprints: Misses latest findings; include bioRxiv, medRxiv, arXiv
- No quality assessment: Treats all evidence equally; assess and report quality
- Publication bias: Only positive results published; note potential bias
- Outdated search: Field evolves rapidly; clearly state search date
Example Workflow
Complete workflow for a biomedical literature review:
# 1. Create review document from template
cp assets/review_template.md crispr_sickle_cell_review.md
# 2. Search multiple databases using appropriate skills
# - Use gget skill for PubMed, bioRxiv
# - Use direct API access for arXiv, Semantic Scholar
# - Export results in JSON format
# 3. Aggregate and process results
python scripts/search_databases.py combined_results.json \
--deduplicate \
--rank citations \
--year-start 2015 \
--year-end 2024 \
--format markdown \
--output search_results.md \
--summary
# 4. Screen results and extract data
# - Manually screen titles, abstracts, full texts
# - Extract key data into the review document
# - Organize by themes
# 5. Write the review following template structure
# - Introduction with clear objectives
# - Detailed methodology section
# - Results organized thematically
# - Critical discussion
# - Clear conclusions
# 6. Verify all citations
python scripts/verify_citations.py crispr_sickle_cell_review.md
# Review the citation report
cat crispr_sickle_cell_review_citation_report.json
# Fix any failed citations and re-verify
python scripts/verify_citations.py crispr_sickle_cell_review.md
# 7. Generate professional PDF
python scripts/generate_pdf.py crispr_sickle_cell_review.md \
--citation-style nature \
--output crispr_sickle_cell_review.pdf
# 8. Review final PDF and markdown outputs
Integration with Other Skills
This skill works seamlessly with other scientific skills:
Database Access Skills
- gget: PubMed, bioRxiv, COSMIC, AlphaFold, Ensembl, UniProt
- bioservices: ChEMBL, KEGG, Reactome, UniProt, PubChem
- datacommons-client: Demographics, economics, health statistics
Analysis Skills
- pydeseq2: RNA-seq differential expression (for methods sections)
- scanpy: Single-cell analysis (for methods sections)
- anndata: Single-cell data (for methods sections)
- biopython: Sequence analysis (for background sections)
Visualization Skills
- matplotlib: Generate figures and plots for review
- seaborn: Statistical visualizations
Writing Skills
- brand-guidelines: Apply institutional branding to PDF
- internal-comms: Adapt review for different audiences
Resources
Bundled Resources
Scripts:
scripts/verify_citations.py: Verify DOIs and generate formatted citations
scripts/generate_pdf.py: Convert markdown to professional PDF
scripts/search_databases.py: Process, deduplicate, and format search results
References:
references/citation_styles.md: Detailed citation formatting guide (APA, Nature, Vancouver, Chicago, IEEE)
references/database_strategies.md: Comprehensive database search strategies
Assets:
assets/review_template.md: Complete literature review template with all sections
External Resources
Guidelines:
Tools:
Citation Styles:
Dependencies
Required Python Packages
pip install requests # For citation verification
Required System Tools
# For PDF generation
brew install pandoc # macOS
apt-get install pandoc # Linux
# For LaTeX (PDF generation)
brew install --cask mactex # macOS
apt-get install texlive-xetex # Linux
Check dependencies:
python scripts/generate_pdf.py --check-deps
Summary
This literature-review skill provides:
- Systematic methodology following academic best practices
- Multi-database integration via existing scientific skills
- Citation verification ensuring accuracy and credibility
- Professional output in markdown and PDF formats
- Comprehensive guidance covering the entire review process
- Quality assurance with verification and validation tools
- Reproducibility through detailed documentation requirements
Conduct thorough, rigorous literature reviews that meet academic standards and provide comprehensive synthesis of current knowledge in any domain.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: literature-review-93description: Conduct comprehensive, systematic literature reviews using multiple academic databases (PubMed, arXiv, bioRxiv, Semantic Scholar, etc.). This skill should be used when conducting systematic literature reviews, meta-analyses, research synthesis, or comprehensive literature searches across biomedical, scientific, and technical domains. Creates professionally formatted markdown documents and PDFs with verified citations in multiple citation styles (APA, Nature, Vancouver, etc.). Use when this capability is needed.4---56# Literature Review78## Overview910Conduct systematic, comprehensive literature reviews following rigorous academic methodology. Search multiple literature databases, synthesize findings thematically, verify all citations for accuracy, and generate professional output documents in markdown and PDF formats.1112This skill integrates with multiple scientific skills for database access (gget, bioservices, datacommons-client) and provides specialized tools for citation verification, result aggregation, and document generation.1314## When to Use This Skill1516Use this skill when:17- Conducting a systematic literature review for research or publication18- Synthesizing current knowledge on a specific topic across multiple sources19- Performing meta-analysis or scoping reviews20- Writing the literature review section of a research paper or thesis21- Investigating the state of the art in a research domain22- Identifying research gaps and future directions23- Requiring verified citations and professional formatting2425## Core Workflow2627Literature reviews follow a structured, multi-phase workflow:2829### Phase 1: Planning and Scoping30311. **Define Research Question**: Use PICO framework (Population, Intervention, Comparison, Outcome) for clinical/biomedical reviews32 - Example: "What is the efficacy of CRISPR-Cas9 (I) for treating sickle cell disease (P) compared to standard care (C)?"33342. **Establish Scope and Objectives**:35 - Define clear, specific research questions36 - Determine review type (narrative, systematic, scoping, meta-analysis)37 - Set boundaries (time period, geographic scope, study types)38393. **Develop Search Strategy**:40 - Identify 2-4 main concepts from research question41 - List synonyms, abbreviations, and related terms for each concept42 - Plan Boolean operators (AND, OR, NOT) to combine terms43 - Select minimum 3 complementary databases44454. **Set Inclusion/Exclusion Criteria**:46 - Date range (e.g., last 10 years: 2015-2024)47 - Language (typically English, or specify multilingual)48 - Publication types (peer-reviewed, preprints, reviews)49 - Study designs (RCTs, observational, in vitro, etc.)50 - Document all criteria clearly5152### Phase 2: Systematic Literature Search53541. **Multi-Database Search**:5556 Select databases appropriate for the domain:5758 **Biomedical & Life Sciences:**59 - Use `gget` skill: `gget search pubmed "search terms"` for PubMed/PMC60 - Use `gget` skill: `gget search biorxiv "search terms"` for preprints61 - Use `bioservices` skill for ChEMBL, KEGG, UniProt, etc.6263 **General Scientific Literature:**64 - Search arXiv via direct API (preprints in physics, math, CS, q-bio)65 - Search Semantic Scholar via API (200M+ papers, cross-disciplinary)66 - Use Google Scholar for comprehensive coverage (manual or careful scraping)6768 **Specialized Databases:**69 - Use `gget alphafold` for protein structures70 - Use `gget cosmic` for cancer genomics71 - Use `datacommons-client` for demographic/statistical data72 - Use specialized databases as appropriate for the domain73742. **Document Search Parameters**:75 ```markdown76 ## Search Strategy7778 ### Database: PubMed79 - **Date searched**: 2024-10-2580 - **Date range**: 2015-01-01 to 2024-10-2581 - **Search string**:82 ```83 ("CRISPR"[Title] OR "Cas9"[Title])84 AND ("sickle cell"[MeSH] OR "SCD"[Title/Abstract])85 AND 2015:2024[Publication Date]86 ```87 - **Results**: 247 articles88 ```8990 Repeat for each database searched.91923. **Export and Aggregate Results**:93 - Export results in JSON format from each database94 - Combine all results into a single file95 - Use `scripts/search_databases.py` for post-processing:96 ```bash97 python search_databases.py combined_results.json \98 --deduplicate \99 --format markdown \100 --output aggregated_results.md101 ```102103### Phase 3: Screening and Selection1041051. **Deduplication**:106 ```bash107 python search_databases.py results.json --deduplicate --output unique_results.json108 ```109 - Removes duplicates by DOI (primary) or title (fallback)110 - Document number of duplicates removed1111122. **Title Screening**:113 - Review all titles against inclusion/exclusion criteria114 - Exclude obviously irrelevant studies115 - Document number excluded at this stage1161173. **Abstract Screening**:118 - Read abstracts of remaining studies119 - Apply inclusion/exclusion criteria rigorously120 - Document reasons for exclusion1211224. **Full-Text Screening**:123 - Obtain full texts of remaining studies124 - Conduct detailed review against all criteria125 - Document specific reasons for exclusion126 - Record final number of included studies1271285. **Create PRISMA Flow Diagram**:129 ```130 Initial search: n = X131 ├─ After deduplication: n = Y132 ├─ After title screening: n = Z133 ├─ After abstract screening: n = A134 └─ Included in review: n = B135 ```136137### Phase 4: Data Extraction and Quality Assessment1381391. **Extract Key Data** from each included study:140 - Study metadata (authors, year, journal, DOI)141 - Study design and methods142 - Sample size and population characteristics143 - Key findings and results144 - Limitations noted by authors145 - Funding sources and conflicts of interest1461472. **Assess Study Quality**:148 - **For RCTs**: Use Cochrane Risk of Bias tool149 - **For observational studies**: Use Newcastle-Ottawa Scale150 - **For systematic reviews**: Use AMSTAR 2151 - Rate each study: High, Moderate, Low, or Very Low quality152 - Consider excluding very low-quality studies1531543. **Organize by Themes**:155 - Identify 3-5 major themes across studies156 - Group studies by theme (studies may appear in multiple themes)157 - Note patterns, consensus, and controversies158159### Phase 5: Synthesis and Analysis1601611. **Create Review Document** from template:162 ```bash163 cp assets/review_template.md my_literature_review.md164 ```1651662. **Write Thematic Synthesis** (NOT study-by-study summaries):167 - Organize Results section by themes or research questions168 - Synthesize findings across multiple studies within each theme169 - Compare and contrast different approaches and results170 - Identify consensus areas and points of controversy171 - Highlight the strongest evidence172173 Example structure:174 ```markdown175 #### 3.3.1 Theme: CRISPR Delivery Methods176177 Multiple delivery approaches have been investigated for therapeutic178 gene editing. Viral vectors (AAV) were used in 15 studies^1-15^ and179 showed high transduction efficiency (65-85%) but raised immunogenicity180 concerns^3,7,12^. In contrast, lipid nanoparticles demonstrated lower181 efficiency (40-60%) but improved safety profiles^16-23^.182 ```1831843. **Critical Analysis**:185 - Evaluate methodological strengths and limitations across studies186 - Assess quality and consistency of evidence187 - Identify knowledge gaps and methodological gaps188 - Note areas requiring future research1891904. **Write Discussion**:191 - Interpret findings in broader context192 - Discuss clinical, practical, or research implications193 - Acknowledge limitations of the review itself194 - Compare with previous reviews if applicable195 - Propose specific future research directions196197### Phase 6: Citation Verification198199**CRITICAL**: All citations must be verified for accuracy before final submission.2002011. **Verify All DOIs**:202 ```bash203 python scripts/verify_citations.py my_literature_review.md204 ```205206 This script:207 - Extracts all DOIs from the document208 - Verifies each DOI resolves correctly209 - Retrieves metadata from CrossRef210 - Generates verification report211 - Outputs properly formatted citations2122132. **Review Verification Report**:214 - Check for any failed DOIs215 - Verify author names, titles, and publication details match216 - Correct any errors in the original document217 - Re-run verification until all citations pass2182193. **Format Citations Consistently**:220 - Choose one citation style and use throughout (see `references/citation_styles.md`)221 - Common styles: APA, Nature, Vancouver, Chicago, IEEE222 - Use verification script output to format citations correctly223 - Ensure in-text citations match reference list format224225### Phase 7: Document Generation2262271. **Generate PDF**:228 ```bash229 python scripts/generate_pdf.py my_literature_review.md \230 --citation-style apa \231 --output my_review.pdf232 ```233234 Options:235 - `--citation-style`: apa, nature, chicago, vancouver, ieee236 - `--no-toc`: Disable table of contents237 - `--no-numbers`: Disable section numbering238 - `--check-deps`: Check if pandoc/xelatex are installed2392402. **Review Final Output**:241 - Check PDF formatting and layout242 - Verify all sections are present243 - Ensure citations render correctly244 - Check that figures/tables appear properly245 - Verify table of contents is accurate2462473. **Quality Checklist**:248 - [ ] All DOIs verified with verify_citations.py249 - [ ] Citations formatted consistently250 - [ ] PRISMA flow diagram included (for systematic reviews)251 - [ ] Search methodology fully documented252 - [ ] Inclusion/exclusion criteria clearly stated253 - [ ] Results organized thematically (not study-by-study)254 - [ ] Quality assessment completed255 - [ ] Limitations acknowledged256 - [ ] References complete and accurate257 - [ ] PDF generates without errors258259## Database-Specific Search Guidance260261### PubMed / PubMed Central262263Access via `gget` skill:264```bash265# Search PubMed266gget search pubmed "CRISPR gene editing" -l 100267268# Search with filters269# Use PubMed Advanced Search Builder to construct complex queries270# Then execute via gget or direct Entrez API271```272273**Search tips**:274- Use MeSH terms: `"sickle cell disease"[MeSH]`275- Field tags: `[Title]`, `[Title/Abstract]`, `[Author]`276- Date filters: `2020:2024[Publication Date]`277- Boolean operators: AND, OR, NOT278- See MeSH browser: https://meshb.nlm.nih.gov/search279280### bioRxiv / medRxiv281282Access via `gget` skill:283```bash284gget search biorxiv "CRISPR sickle cell" -l 50285```286287**Important considerations**:288- Preprints are not peer-reviewed289- Verify findings with caution290- Check if preprint has been published (CrossRef)291- Note preprint version and date292293### arXiv294295Access via direct API or WebFetch:296```python297# Example search categories:298# q-bio.QM (Quantitative Methods)299# q-bio.GN (Genomics)300# q-bio.MN (Molecular Networks)301# cs.LG (Machine Learning)302# stat.ML (Machine Learning Statistics)303304# Search format: category AND terms305search_query = "cat:q-bio.QM AND ti:\"single cell sequencing\""306```307308### Semantic Scholar309310Access via direct API (requires API key, or use free tier):311- 200M+ papers across all fields312- Excellent for cross-disciplinary searches313- Provides citation graphs and paper recommendations314- Use for finding highly influential papers315316### Specialized Biomedical Databases317318Use appropriate skills:319- **ChEMBL**: `bioservices` skill for chemical bioactivity320- **UniProt**: `gget` or `bioservices` skill for protein information321- **KEGG**: `bioservices` skill for pathways and genes322- **COSMIC**: `gget` skill for cancer mutations323- **AlphaFold**: `gget alphafold` for protein structures324- **PDB**: `gget` or direct API for experimental structures325326### Citation Chaining327328Expand search via citation networks:3293301. **Forward citations** (papers citing key papers):331 - Use Google Scholar "Cited by"332 - Use Semantic Scholar or OpenAlex APIs333 - Identifies newer research building on seminal work3343352. **Backward citations** (references from key papers):336 - Extract references from included papers337 - Identify highly cited foundational work338 - Find papers cited by multiple included studies339340## Citation Style Guide341342Detailed formatting guidelines are in `references/citation_styles.md`. Quick reference:343344### APA (7th Edition)345- In-text: (Smith et al., 2023)346- Reference: Smith, J. D., Johnson, M. L., & Williams, K. R. (2023). Title. *Journal*, *22*(4), 301-318. https://doi.org/10.xxx/yyy347348### Nature349- In-text: Superscript numbers^1,2^350- Reference: Smith, J. D., Johnson, M. L. & Williams, K. R. Title. *Nat. Rev. Drug Discov.* **22**, 301-318 (2023).351352### Vancouver353- In-text: Superscript numbers^1,2^354- Reference: Smith JD, Johnson ML, Williams KR. Title. Nat Rev Drug Discov. 2023;22(4):301-18.355356**Always verify citations** with verify_citations.py before finalizing.357358## Best Practices359360### Search Strategy3611. **Use multiple databases** (minimum 3): Ensures comprehensive coverage3622. **Include preprint servers**: Captures latest unpublished findings3633. **Document everything**: Search strings, dates, result counts for reproducibility3644. **Test and refine**: Run pilot searches, review results, adjust search terms365366### Screening and Selection3671. **Use clear criteria**: Document inclusion/exclusion criteria before screening3682. **Screen systematically**: Title → Abstract → Full text3693. **Document exclusions**: Record reasons for excluding studies3704. **Consider dual screening**: For systematic reviews, have two reviewers screen independently371372### Synthesis3731. **Organize thematically**: Group by themes, NOT by individual studies3742. **Synthesize across studies**: Compare, contrast, identify patterns3753. **Be critical**: Evaluate quality and consistency of evidence3764. **Identify gaps**: Note what's missing or understudied377378### Quality and Reproducibility3791. **Assess study quality**: Use appropriate quality assessment tools3802. **Verify all citations**: Run verify_citations.py script3813. **Document methodology**: Provide enough detail for others to reproduce3824. **Follow guidelines**: Use PRISMA for systematic reviews383384### Writing3851. **Be objective**: Present evidence fairly, acknowledge limitations3862. **Be systematic**: Follow structured template3873. **Be specific**: Include numbers, statistics, effect sizes where available3884. **Be clear**: Use clear headings, logical flow, thematic organization389390## Common Pitfalls to Avoid3913921. **Single database search**: Misses relevant papers; always search multiple databases3932. **No search documentation**: Makes review irreproducible; document all searches3943. **Study-by-study summary**: Lacks synthesis; organize thematically instead3954. **Unverified citations**: Leads to errors; always run verify_citations.py3965. **Too broad search**: Yields thousands of irrelevant results; refine with specific terms3976. **Too narrow search**: Misses relevant papers; include synonyms and related terms3987. **Ignoring preprints**: Misses latest findings; include bioRxiv, medRxiv, arXiv3998. **No quality assessment**: Treats all evidence equally; assess and report quality4009. **Publication bias**: Only positive results published; note potential bias40110. **Outdated search**: Field evolves rapidly; clearly state search date402403## Example Workflow404405Complete workflow for a biomedical literature review:406407```bash408# 1. Create review document from template409cp assets/review_template.md crispr_sickle_cell_review.md410411# 2. Search multiple databases using appropriate skills412# - Use gget skill for PubMed, bioRxiv413# - Use direct API access for arXiv, Semantic Scholar414# - Export results in JSON format415416# 3. Aggregate and process results417python scripts/search_databases.py combined_results.json \418 --deduplicate \419 --rank citations \420 --year-start 2015 \421 --year-end 2024 \422 --format markdown \423 --output search_results.md \424 --summary425426# 4. Screen results and extract data427# - Manually screen titles, abstracts, full texts428# - Extract key data into the review document429# - Organize by themes430431# 5. Write the review following template structure432# - Introduction with clear objectives433# - Detailed methodology section434# - Results organized thematically435# - Critical discussion436# - Clear conclusions437438# 6. Verify all citations439python scripts/verify_citations.py crispr_sickle_cell_review.md440441# Review the citation report442cat crispr_sickle_cell_review_citation_report.json443444# Fix any failed citations and re-verify445python scripts/verify_citations.py crispr_sickle_cell_review.md446447# 7. Generate professional PDF448python scripts/generate_pdf.py crispr_sickle_cell_review.md \449 --citation-style nature \450 --output crispr_sickle_cell_review.pdf451452# 8. Review final PDF and markdown outputs453```454455## Integration with Other Skills456457This skill works seamlessly with other scientific skills:458459### Database Access Skills460- **gget**: PubMed, bioRxiv, COSMIC, AlphaFold, Ensembl, UniProt461- **bioservices**: ChEMBL, KEGG, Reactome, UniProt, PubChem462- **datacommons-client**: Demographics, economics, health statistics463464### Analysis Skills465- **pydeseq2**: RNA-seq differential expression (for methods sections)466- **scanpy**: Single-cell analysis (for methods sections)467- **anndata**: Single-cell data (for methods sections)468- **biopython**: Sequence analysis (for background sections)469470### Visualization Skills471- **matplotlib**: Generate figures and plots for review472- **seaborn**: Statistical visualizations473474### Writing Skills475- **brand-guidelines**: Apply institutional branding to PDF476- **internal-comms**: Adapt review for different audiences477478## Resources479480### Bundled Resources481482**Scripts:**483- `scripts/verify_citations.py`: Verify DOIs and generate formatted citations484- `scripts/generate_pdf.py`: Convert markdown to professional PDF485- `scripts/search_databases.py`: Process, deduplicate, and format search results486487**References:**488- `references/citation_styles.md`: Detailed citation formatting guide (APA, Nature, Vancouver, Chicago, IEEE)489- `references/database_strategies.md`: Comprehensive database search strategies490491**Assets:**492- `assets/review_template.md`: Complete literature review template with all sections493494### External Resources495496**Guidelines:**497- PRISMA (Systematic Reviews): http://www.prisma-statement.org/498- Cochrane Handbook: https://training.cochrane.org/handbook499- AMSTAR 2 (Review Quality): https://amstar.ca/500501**Tools:**502- MeSH Browser: https://meshb.nlm.nih.gov/search503- PubMed Advanced Search: https://pubmed.ncbi.nlm.nih.gov/advanced/504- Boolean Search Guide: https://www.ncbi.nlm.nih.gov/books/NBK3827/505506**Citation Styles:**507- APA Style: https://apastyle.apa.org/508- Nature Portfolio: https://www.nature.com/nature-portfolio/editorial-policies/reporting-standards509- NLM/Vancouver: https://www.nlm.nih.gov/bsd/uniform_requirements.html510511## Dependencies512513### Required Python Packages514```bash515pip install requests # For citation verification516```517518### Required System Tools519```bash520# For PDF generation521brew install pandoc # macOS522apt-get install pandoc # Linux523524# For LaTeX (PDF generation)525brew install --cask mactex # macOS526apt-get install texlive-xetex # Linux527```528529Check dependencies:530```bash531python scripts/generate_pdf.py --check-deps532```533534## Summary535536This literature-review skill provides:5375381. **Systematic methodology** following academic best practices5392. **Multi-database integration** via existing scientific skills5403. **Citation verification** ensuring accuracy and credibility5414. **Professional output** in markdown and PDF formats5425. **Comprehensive guidance** covering the entire review process5436. **Quality assurance** with verification and validation tools5447. **Reproducibility** through detailed documentation requirements545546Conduct thorough, rigorous literature reviews that meet academic standards and provide comprehensive synthesis of current knowledge in any domain.547548---549> Converted and distributed by [TomeVault](https://tomevault.io/claim/jackspace) — claim your Tome and manage your conversions.550<!-- tomevault:4.0:skill_md:2026-04-11 -->