| name | rnaconsensus |
| description | Use when predicting RNA secondary structures for single sequences using information from multiple sequence alignments of homologous sequences. |
| disable-model-invocation | true |
| user-invocable | true |
rnaconsensus
Quick Start
- Command:
RNAconsensus [-a filename] [-o OUTPUT] [--turn TURN] {hardcons,softcons} ...
- Local executable:
/home/vimalinx/miniforge3/envs/bio/bin/RNAconsensus
- Full reference: See
references/help.md for complete options and details
When To Use This Tool
- Predict single-sequence structures using consensus information from a homologous alignment.
- Map an RNAalifold consensus structure onto each sequence with hard constraints.
- Drive
RNAfold -C-style per-sequence predictions from an alignment-derived consensus.
- Use the softer probabilistic strategy when hard constraints are too brittle.
Common Patterns
RNAconsensus -a family.aln hardcons family.alifold > constraints.txt
RNAconsensus -a family.aln hardcons -d alidot.ps -t 0.95 > constraints.txt
RNAconsensus -a family.aln -o softcons.txt softcons
Recommended Workflow
- Prepare a multiple sequence alignment file of homologous sequences
- Choose a prediction strategy:
hardcons (legacy refold.pl mode) or softcons (RNAsoftcons mode)
- Run
RNAconsensus -a <alignment_file> -o <output> <strategy>
- Review output secondary structure predictions
Guardrails
- Requires a multiple sequence alignment file via
-a flag
- Must specify either
hardcons or softcons strategy
- Use
--turn to set minimum hairpin length if needed
--version is not implemented in this argparse wrapper even though --help works