
Bio Reporting Jupyter Reports
- 2 installs
- 1.1k repo stars
- Updated July 25, 2026
- gptomics/bioskills
Run parameterized, reproducible Jupyter notebooks for bioinformatics analysis using papermill to generate automated reports.
About
Uses papermill to execute parameterized Jupyter notebooks for reproducible bioinformatics analysis and shareable reports. A developer uses it when running notebook-based pipelines or generating automated computational reports.
- Parameter injection via papermill execute_notebook
- Notebook templating with parameters-tagged cells
Bio Reporting Jupyter Reports by the numbers
- 2 all-time installs (skills.sh)
- Ranked #1,759 of 2,064 Data Science & ML skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gptomics/bioskills --skill bio-reporting-jupyter-reportsAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 1.1k |
| Last updated | July 25, 2026 |
| Repository | gptomics/bioskills ↗ |
What it does
Run parameterized, reproducible Jupyter notebooks for bioinformatics analysis using papermill to generate automated reports.
Files
Jupyter Reports with Papermill
Parameterized Notebooks
import papermill as pm
# Execute notebook with parameters
pm.execute_notebook(
'analysis_template.ipynb',
'output_report.ipynb',
parameters={
'input_file': 'data/counts.csv',
'condition_col': 'treatment',
'fdr_threshold': 0.05
}
)Creating Parameterized Templates
Mark a cell with the parameters tag in Jupyter:
# Parameters (tag this cell as "parameters")
input_file = 'default.csv'
output_dir = 'results/'
fdr_threshold = 0.05Batch Processing
import papermill as pm
from pathlib import Path
samples = ['sample1', 'sample2', 'sample3']
for sample in samples:
pm.execute_notebook(
'qc_template.ipynb',
f'reports/{sample}_qc.ipynb',
parameters={'sample_id': sample}
)Converting to HTML/PDF
# Single notebook
jupyter nbconvert --to html report.ipynb
# With execution
jupyter nbconvert --execute --to html report.ipynb
# PDF (requires pandoc + LaTeX)
jupyter nbconvert --to pdf report.ipynbBest Practices
- Keep analysis code in cells, explanatory text in markdown
- Use parameters for all configurable values
- Include version information and timestamps
- Clear outputs before committing to version control
Related Skills
- reporting/quarto-reports - Alternative report format
- reporting/rmarkdown-reports - R-based reports
- workflows/rnaseq-to-de - Embed in workflows
Related skills
Data Science & MLpipelines