rnapkplex
Quick Start
- Command:
RNAPKplex [OPTIONS] < input.fasta - Local executable:
/home/vimalinx/miniforge3/envs/bio/bin/RNAPKplex - Full reference: See
references/help.mdfor complete options and details
When To Use This Tool
- Use
RNAPKplexwhen pseudoknots are central to the structural hypothesis and pseudoknot-free RNA folding tools are not sufficient. - It is useful for flagging putative pseudoknot sites by combining local accessibility with interaction energy gain.
- Use the probability cutoff
-cto suppress weakly accessible candidate sites and-eto demand stronger pseudoknot stabilization. - Use
-swhen you want near-optimal pseudoknot alternatives instead of only the best one.
Common Patterns
# Basic pseudoknot search from stdin
printf '>seq\nGGGAAAUCCCUUU\n' | RNAPKplex
# Require stronger energy gain before reporting pseudoknots
printf '>seq\nGGGAAAUCCCUUU\n' | RNAPKplex -e -10
# Filter low-accessibility candidate regions
printf '>seq\nGGGAAAUCCCUUU\n' | RNAPKplex -c 1e-4
# Include near-optimal suboptimal pseudoknot solutions
printf '>seq\nGGGAAAUCCCUUU\n' | RNAPKplex -s 2
Recommended Workflow
- Prepare input RNA sequence in FASTA format
- Run
RNAPKplexwith default parameters to identify potential pseudoknots - Adjust
-e(energy cutoff) or-c(probability cutoff) to filter results as needed - Use
-sto explore suboptimal structures within a specified energy range
Guardrails
- Algorithm uses O(n^2w^4) CPU time and O(nw^2) memory; avoid very long sequences
- Always uses dangle=2 model; this cannot be configured
- Default energy cutoff is -8.10 kcal/mol; pseudoknots with less favorable energy gains are rejected
- The skill name is
rnapkplex, but the actual executable is capitalized asRNAPKplex