Pipeline scaffold
Pipeline scaffold skill. Bioinformatics pipeline scaffolding with Snakemake/Nextflow, workflow configuration, reproducible analysis environment setup.
Use This Skill When
- Bioinformatics pipeline scaffolding with Snakemake/Nextflow.
- Workflow configuration.
- Reproducible analysis environment setup.
Required Inputs
- Research objective, decision target, or hypothesis.
- Available data, source constraints, and domain assumptions.
- Required outputs, success metrics, and deadline or reproducibility constraints.
Workflow
- Confirm scope, assumptions, and the exact artifact set to save.
- Apply the narrowest domain method that answers the request with defensible evidence.
- Save code, tables, figures, and intermediate outputs to files instead of chat-only output.
- State limitations, uncertainty, and any validation or sensitivity checks performed.
- Append skill selection, handoff I/O, and file writes to
logs/process-log.jsonl.
Deliverables
report.md: concise method, results, interpretation, and file inventory in the user's language.
results/: structured outputs, metrics, model artifacts, or extracted findings.
figures/: English-only charts, diagrams, or panels when visual output is needed.
data/: processed or derived datasets when transformation occurs.
Quality Gates
If any gate fails: identify the specific failing check, fix the issue, and re-validate before proceeding.
Gotchas
- Experimental protocols must include negative controls. Results without controls are not interpretable
- Data format validation should occur at ingestion, not after analysis. Fail fast on schema violations
- Pipeline intermediate outputs must be saved to files. Rerunning the entire pipeline for debugging is costly
Validation Loop
- Execute analysis and generate outputs
- Check:
- Method selection matches the research question and stated assumptions
- All outputs are saved to files (no chat-only results)
- Limitations and uncertainty are explicitly stated
logs/process-log.jsonl is updated with execution trace
- If any check fails:
- Identify the failing gate
- Fix the specific issue
- Re-run validation
- Proceed only after all gates pass
1---2name: co-scientist-pipeline-scaffold3description: Pipeline scaffold skill. Bioinformatics pipeline scaffolding with Snakemake/Nextflow, workflow configuration, reproducible analysis environment setup. Use when working with bioinformatics pipeline scaffolding with snakemake/nextflow, workflow configuration, reproducible analysis environment setup.4---56# Pipeline scaffold78Pipeline scaffold skill. Bioinformatics pipeline scaffolding with Snakemake/Nextflow, workflow configuration, reproducible analysis environment setup.910## Use This Skill When1112- Bioinformatics pipeline scaffolding with Snakemake/Nextflow.13- Workflow configuration.14- Reproducible analysis environment setup.1516## Required Inputs1718- Research objective, decision target, or hypothesis.19- Available data, source constraints, and domain assumptions.20- Required outputs, success metrics, and deadline or reproducibility constraints.2122## Workflow23241. Confirm scope, assumptions, and the exact artifact set to save.252. Apply the narrowest domain method that answers the request with defensible evidence.263. Save code, tables, figures, and intermediate outputs to files instead of chat-only output.274. State limitations, uncertainty, and any validation or sensitivity checks performed.285. Append skill selection, handoff I/O, and file writes to `logs/process-log.jsonl`.2930## Deliverables3132- `report.md`: concise method, results, interpretation, and file inventory in the user's language.33- `results/`: structured outputs, metrics, model artifacts, or extracted findings.34- `figures/`: English-only charts, diagrams, or panels when visual output is needed.35- `data/`: processed or derived datasets when transformation occurs.3637## Quality Gates3839- [ ] The selected method matches the scientific question and stated assumptions.40- [ ] Outputs are reproducible, saved to files, and traceable from inputs to conclusions.41- [ ] Missing data, uncertainty, bias, and hard limits are made explicit.42- [ ] `report.md` and `logs/process-log.jsonl` reference the generated artifacts.43- [ ] No essential result remains chat-only.4445If any gate fails: identify the specific failing check, fix the issue, and re-validate before proceeding.4647## Gotchas4849- Experimental protocols must include negative controls. Results without controls are not interpretable50- Data format validation should occur at ingestion, not after analysis. Fail fast on schema violations51- Pipeline intermediate outputs must be saved to files. Rerunning the entire pipeline for debugging is costly5253## Validation Loop54551. Execute analysis and generate outputs562. Check:57 - Method selection matches the research question and stated assumptions58 - All outputs are saved to files (no chat-only results)59 - Limitations and uncertainty are explicitly stated60 - `logs/process-log.jsonl` is updated with execution trace613. If any check fails:62 - Identify the failing gate63 - Fix the specific issue64 - Re-run validation654. Proceed only after all gates pass