-
Notifications
You must be signed in to change notification settings - Fork 0
Output formats
Francesco Palozzi edited this page Jun 5, 2026
·
1 revision
The extended BPSEQ is a tab-separated file with one row per nucleotide position and one column per Leontis–Westhof interaction family:
Index Nucleotide cWW tWW cWH tWH cWS tWS cHH tHH cHS tHS cSS tSS
1 G 29 0 0 0 0 0 0 0 0 0 0 0
2 G 28 0 0 0 0 0 0 0 0 0 0 0
5 U 25 0 0 0 0 0 0 0 0 35 0 0
...
- Every nucleotide in the sequence appears (one row per position).
-
0means no partner of that type. - Multiple partners for a single type at one position are listed as comma-separated values (e.g.,
3,17). To produce extended BPSEQ, passtrueas theextendedargument:
String result = unifier.process(inputFile, ToolType.FR3D, true);The canonical BPSEQ follows the classic three-column format and contains only positions that participate in at least one canonical pair (cWW or tWW):
1 G 29
2 G 28
4 C 26
...
To produce canonical BPSEQ, pass false as the extended argument:
String result = unifier.process(inputFile, ToolType.FR3D, false);← Supported Input Formats | Next: Auto-Detection →
RNA2DUnifier – Copyright © 2026 Francesco Palozzi.
University of Camerino – Licensed under the Apache License, Version 2.0.