Agent skill

bio-reporting-rmarkdown-reports

Create reproducible bioinformatics analysis reports with R Markdown including code, results, and visualizations in HTML, PDF, or Word format. Use when generating analysis reports with RMarkdown.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill rmarkdown-reports --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 3
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/bioskills/rmarkdown-reports/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 135
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## Version Compatibility Reference examples tested with: rmarkdown 2.25+, knitr 1.45+, DESeq2 1.42+, ggplot2 3.5+ Before using code patterns, verify installed versions match. If versions differ: - R: `packageVersion('<pkg>')` then `?function_name` to verify parameters If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # R Markdown Reports **"Create an R Markdown report"** → Write reproducible R-based documents combining code chunks, results, and narrative that render to HTML/PDF/Word. - R: `rmarkdown::render('report.Rmd')`, or Knit button in RStudio ## Basic Document Structure ```yaml --- title: "RNA-seq Analysis Report" author: "Your Name" date: "`r Sys.Date()`" output: html_document: toc: true toc_float: true code_folding: hide theme: cosmo --- ``` ## Setup Chunk ````r ```{r setup, include=FALSE} knitr::opts_chunk$set( echo = TRUE, message = FALSE, warning = FALSE, fig.width = 10, fig.height = 6, fig.align = 'center' ) library(tidyverse) library(DESeq2) library(pheatmap) ``` ```` ## Code Chunk Options ````r ```{r analysis, echo=TRUE, results='hide'} # echo: show code # resu

What's inside
Steps it walks through
  1. Version Compatibility
  2. Basic Document Structure
  3. Setup Chunk
  4. Code Chunk Options
  5. Parameterized Reports
  6. Tables
  7. Figures
  8. Inline Code
  9. Child Documents
  10. PDF Output
  11. HTML with Tabs
  12. Caching Long Computations
  13. Custom CSS
  14. Complete Report Template
Ships with 2 files
  • examples/rnaseq_report_template.Rmd
  • usage-guide.md
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-reporting-rmarkdown-reports skill do?

Create reproducible bioinformatics analysis reports with R Markdown including code, results, and visualizations in HTML, PDF, or Word format. Use when generating analysis reports with RMarkdown.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill rmarkdown-reports --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From BioTender-max/awesome-bio-agent-skills, a repository with 135 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going