Agent skill

bio-rna-structure-secondary-structure-prediction

Predicts RNA secondary structures using minimum free energy folding and partition function analysis with ViennaRNA (RNAfold, RNAalifold, RNAcofold). Computes base-pair probabilities, centroid structures, and consensus structures from alignments. Use when predicting RNA folding, evaluating structural stability, or comparing structures across homologs.

BioTender-maxgithub.com/BioTender-maxGitHub ↗
claude-codeships scriptsNOASSERTION
Install
npx skills add BioTender-max/awesome-bio-agent-skills --skill secondary-structure-prediction --agent claude-code

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

Facts
Files in the skill folder: 4
SKILL.md size: 9 KB
Bundled scripts: yes
Path: skills/bioskills/secondary-structure-prediction/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: Infernal 1.1+, matplotlib 3.8+, numpy 1.26+ Before using code patterns, verify installed versions match. If versions differ: - Python: `pip show <package>` then `help(module.function)` to check signatures - CLI: `<tool> --version` then `<tool> --help` to confirm flags If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying. # Secondary Structure Prediction **"Predict the secondary structure of my RNA sequence"** → Compute minimum free energy (MFE) folding, base-pair probabilities via partition function, and consensus structures from alignments using thermodynamic models. - CLI: `RNAfold` for single-sequence MFE/partition folding - CLI: `RNAalifold` for consensus structure from alignment - CLI: `RNAcofold` for RNA-RNA interaction structure Predict RNA secondary structures using thermodynamic models. ViennaRNA provides MFE folding, partition function analysis, consensus structure prediction from alignments, and RNA-RNA interaction prediction. ## RNAfold: Single Sequence Folding ### MFE Structure ```bash # Basic MFE folding (rea

What's inside
Steps it walks through
  1. Version Compatibility
  2. RNAfold: Single Sequence Folding
  3. MFE Structure
  4. Key RNAfold Options
  5. Constrained Folding
  6. RNAalifold: Consensus Structure from Alignment
  7. RNAcofold: RNA-RNA Interaction
  8. LinearFold: Fast Folding for Long Sequences
  9. ViennaRNA Python API
  10. Folding with Constraints (Python)
  11. SHAPE-Constrained Folding (Python)
  12. Structure Comparison
  13. Structure Formats
  14. Format Conversion
Ships with 3 files
  • examples/consensus_structure.sh
  • examples/rnafold_analysis.py
  • usage-guide.md
Commands it runs
Basic MFE folding (reads sequence from stdin or file)
echo "GGGAAACCC" | RNAfold
With partition function (-p) and base-pair probabilities
echo "GGGAAACCC" | RNAfold -p
Output PostScript dot plot and structure plot
echo ">myRNA" > input.fa
echo "GGGCUAUUAGCUCAGUUGGUUAGAGCGCACCCCUGAUAAGGGUGAGGUCGCUGAUUCGAAUUCAGCAUAGCCCA" >> input.fa
RNAfold -p --noPS < input.fa  # Suppress PostScript files
Force specific positions paired/unpaired
Constraint notation: '.' = unconstrained, 'x' = unpaired, '(' ')' = forced pair
More from awesome-bio-agent-skills
All skills →
About this skill
What does the bio-rna-structure-secondary-structure-prediction skill do?

Predicts RNA secondary structures using minimum free energy folding and partition function analysis with ViennaRNA (RNAfold, RNAalifold, RNAcofold). Computes base-pair probabilities, centroid structures, and consensus structures from alignments. Use when predicting RNA folding, evaluating structural stability, or comparing structures across homologs.

How do I install it?

Run `npx skills add BioTender-max/awesome-bio-agent-skills --skill secondary-structure-prediction --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