@teselagen/sequence-utils 0.1.1 → 0.1.6
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/annotationTypes.d.ts +1 -2
- package/diffUtils.d.ts +2 -2
- package/index.d.ts +1 -1
- package/index.js +35 -31
- package/index.mjs +5813 -5767
- package/index.umd.js +57 -0
- package/package.json +3 -3
package/annotationTypes.d.ts
CHANGED
package/diffUtils.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export function getDiffFromSeqs(oldData: any, newData: any, { ignoreKeys }?: {
|
|
2
2
|
ignoreKeys?: any[] | undefined;
|
|
3
|
-
}): import("jsondiffpatch").Delta | undefined;
|
|
3
|
+
}): import("jsondiffpatch-rc").Delta | undefined;
|
|
4
4
|
export function patchSeqWithDiff(oldData: any, diff: any, { ignoreKeys }?: {
|
|
5
5
|
ignoreKeys?: any[] | undefined;
|
|
6
6
|
}): any;
|
|
7
|
-
export function reverseSeqDiff(diff: any): import("jsondiffpatch").Delta | undefined;
|
|
7
|
+
export function reverseSeqDiff(diff: any): import("jsondiffpatch-rc").Delta | undefined;
|
package/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./computeDigestFragments";
|
|
2
2
|
export * from "./diffUtils";
|
|
3
|
+
export * from "./annotationTypes";
|
|
3
4
|
export * as bioData from "./bioData";
|
|
4
5
|
export { default as getAllInsertionsInSeqReads } from "./getAllInsertionsInSeqReads";
|
|
5
6
|
export { default as annotateSingleSeq } from "./annotateSingleSeq";
|
|
@@ -9,7 +10,6 @@ export { default as getVirtualDigest } from "./getVirtualDigest";
|
|
|
9
10
|
export { default as isEnzymeType2S } from "./isEnzymeType2S";
|
|
10
11
|
export { default as insertGapsIntoRefSeq } from "./insertGapsIntoRefSeq";
|
|
11
12
|
export { default as adjustBpsToReplaceOrInsert } from "./adjustBpsToReplaceOrInsert";
|
|
12
|
-
export { default as annotationTypes } from "./annotationTypes";
|
|
13
13
|
export { default as calculatePercentGC } from "./calculatePercentGC";
|
|
14
14
|
export { default as calculateTm } from "./calculateTm";
|
|
15
15
|
export { default as cutSequenceByRestrictionEnzyme } from "./cutSequenceByRestrictionEnzyme";
|