@teselagen/sequence-utils 0.1.1 → 0.1.5

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.
@@ -1,3 +1,2 @@
1
- declare const _default: string[];
2
- export default _default;
1
+ export const annotationTypes: string[];
3
2
  export const modifiableTypes: string[];
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";