Assess translational gaps between preclinical models and human diseases.
ID: 209
scripts/main.py.references/ for task-specific guidance.See ## Usage above for related details.
cd "20260318/scientific-skills/Evidence Insight/translational-gap-analyzer"
python -m py_compile scripts/main.py
python scripts/main.py --help
Example run plan:
CONFIG block or documented parameters if the script uses fixed settings.python scripts/main.py with the validated inputs.See ## Workflow above for related details.
scripts/main.py.references/ contains supporting rules, prompts, or checklists.Use this command to verify that the packaged script entry point can be parsed before deeper execution.
python -m py_compile scripts/main.py
Use these concrete commands for validation. They are intentionally self-contained and avoid placeholder paths.
python -m py_compile scripts/main.py
python scripts/main.py --help
Assesses the "translational gap" between basic research models (such as mice, zebrafish, cell lines) and human diseases, providing early warning of clinical translation failure risks. This system helps researchers identify potential translational barriers in preclinical research and improve clinical trial success rates through multi-dimensional analysis.
# Full assessment report
python scripts/main.py --model <model_type> --disease <disease_name> --full
# Quick risk assessment
python scripts/main.py --model <model_type> --disease <disease_name> --quick
# Compare multiple models
python scripts/main.py --models mouse,rat,primate --disease <disease_name> --compare
# Specify focus areas
python scripts/main.py --model mouse --disease "Alzheimer's" --focus metabolism,immune
| Argument | Description | Required |
|---|---|---|
--model | Model type (mouse, rat, zebrafish, cell_line, organoid, primate) | Yes (unless --models) |
--models | Multi-model comparison mode, comma-separated | No |
--disease | Disease name or MeSH ID | Yes |
--focus | Focus areas, comma-separated (anatomy, physiology, metabolism, immune, genetics, behavior) | No |
--full | Generate full assessment report | No |
--quick | Quick risk assessment mode | No |
--compare | Multi-model comparison mode | No |
--output | Output file path | No |
--format | Output format (json, markdown, table) | No |
{
"model": "mouse",
"disease": "Alzheimer's Disease",
"overall_gap_score": 6.8,
"risk_level": "HIGH",
"dimensions": {
"genetics": {"score": 8.5, "concerns": ["APOE4 differences", "Different tau pathology patterns"]},
"physiology": {"score": 7.0, "concerns": ["Brain structure differences", "Lifespan differences"]},
"metabolism": {"score": 6.5, "concerns": ["Significant drug metabolism differences"]},
"immune": {"score": 5.5, "concerns": ["Microglia functional differences", "Different neuroinflammation patterns"]},
"behavior": {"score": 6.0, "concerns": ["Limitations in cognitive assessment methods"]}
},
"clinical_failure_predictors": [
"Immune-related mechanism research may not translate",
"Drug clearance rate differences may lead to inappropriate dosing"
],
"recommendations": [
"Consider using humanized mouse models",
"Add non-human primate validation experiments",
"Focus on peripheral immune and central immune interactions"
]
}
| Model | Applicable Scenarios | Typical Gaps |
|---|---|---|
| mouse | Genetic manipulation, basic research | Immune, metabolism, brain structure |
| rat | Behavioral studies, cardiovascular | Cognition, drug metabolism |
| zebrafish | Development, high-throughput screening | Anatomy, physiology |
| cell_line | Molecular mechanisms | Microenvironment, systemic |
| organoid | Human-specific research | Maturity, vascularization |
| primate | Preclinical validation | Cost, ethics |
SKILL.md - This filescripts/main.py - Main analysis script| Risk Indicator | Assessment | Level |
|---|---|---|
| Code Execution | Python/R scripts executed locally | Medium |
| Network Access | No external API calls | Low |
| File System Access | Read input files, write output files | Medium |
| Instruction Tampering | Standard prompt guidelines | Low |
| Data Exposure | Output files saved to workspace | Low |
# Python dependencies
pip install -r requirements.txt
Every final response should make these items explicit when they are relevant:
scripts/main.py fails, report the failure point, summarize what still can be completed safely, and provide a manual fallback.This skill accepts requests that match the documented purpose of translational-gap-analyzer and include enough context to complete the workflow safely.
Do not continue the workflow when the request is out of scope, missing a critical input, or would require unsupported assumptions. Instead respond:
translational-gap-analyzeronly handles its documented workflow. Please provide the missing required inputs or switch to a more suitable skill.
Use the following fixed structure for non-trivial requests:
If the request is simple, you may compress the structure, but still keep assumptions and limits explicit when they affect correctness.