gensplore 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/gensplore.cjs +9 -9
- package/dist/gensplore.js +418 -407
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,3 +71,5 @@ reference-relative DNA differences and translated changes above affected AA
|
|
|
71
71
|
ribbons. Synonymous changes have no AA label; frameshifts and unsupported
|
|
72
72
|
translation annotations are handled explicitly. Biological function is not predicted. See the root
|
|
73
73
|
README for alignment limits and coordinate conventions.
|
|
74
|
+
|
|
75
|
+
For an existing reference-coordinate alignment, pass `alignedSequence={{ name, sequence, insertions }}` instead of `fastaUrl`. The sequence has one IUPAC base (including `N`) or deletion gap (`-`) per reference base. Insertions are `{ position, sequence }`, where position is the number of reference bases before the insertion (0 means before the first base). This preserves supplied gap placement and bypasses FASTA realignment. Removing the prop clears the comparison.
|