Use when computing optimal and suboptimal secondary structures for hybridization of two RNA strands, such as probe-target binding predictions.
RNAduplex [OPTION]... < input.fa/home/vimalinx/miniforge3/envs/bio/bin/RNAduplexreferences/help.md for complete options and model detailsRNAduplex when you want the hybridization structure between two RNA strands and only care about inter-molecular base pairs.-e when you need near-optimal alternative duplexes, not just the best-scoring interaction.# Predict the best duplex for two sequences from stdin
printf 'GGGAAAUCC\nGGAUUUCCC\n' | RNAduplex
# Enumerate suboptimal duplexes within 2 kcal/mol of the optimum
printf 'GGGAAAUCC\nGGAUUUCCC\n' | RNAduplex -e 2
# Sort reported duplexes by free energy
printf 'GGGAAAUCC\nGGAUUUCCC\n' | RNAduplex -e 2 -s
# Recalculate hybridization under a different temperature
printf 'GGGAAAUCC\nGGAUUUCCC\n' | RNAduplex -T 25
--noconv is setRNAduplex with relevant options (e.g., -s to sort by free energy, -e <range> for suboptimal structures within an energy range)& separating strands, position ranges (from,to : from,to), and energy in kcal/mol-T for temperature, --salt for salt concentration, -P for custom energy parameters)RNAcofold instead