@teselagen/sequence-utils 0.3.30 → 0.3.31
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/calculateNebTa.d.ts +1 -4
- package/calculateTm.d.ts +1 -7
- package/diffUtils.d.ts +2 -2
- package/featureTypesAndColors.d.ts +2 -6
- package/filterSequenceString.d.ts +2 -17
- package/generateSequenceData.d.ts +0 -5
- package/getAminoAcidStringFromSequenceString.d.ts +1 -3
- package/index.cjs +3967 -3915
- package/index.js +3967 -3915
- package/index.umd.cjs +3967 -3915
- package/mapAnnotationsToRows.d.ts +1 -3
- package/package.json +1 -1
- package/src/adjustBpsToReplaceOrInsert.test.js +1 -1
- package/src/cutSequenceByRestrictionEnzyme.test.js +1 -1
- package/src/deleteSequenceDataAtRange.test.js +1 -1
- package/src/diffUtils.test.js +1 -1
- package/src/doesEnzymeChopOutsideOfRecognitionSite.test.js +1 -1
- package/src/filterSequenceString.test.js +0 -1
- package/src/generateSequenceData.test.js +1 -1
- package/src/getDigestFragmentsForRestrictionEnzymes.test.js +1 -1
- package/src/getLeftAndRightOfSequenceInRangeGivenPosition.test.js +1 -1
- package/src/getPossiblePartsFromSequenceAndEnzymes.test.js +1 -1
- package/src/getReverseComplementAnnotation.test.js +1 -1
- package/src/getReverseComplementSequenceAndAnnotations.test.js +1 -1
- package/src/getReverseComplementSequenceString.test.js +1 -1
- package/src/getReverseSequenceString.test.js +1 -1
- package/src/getSequenceDataBetweenRange.test.js +1 -1
- package/src/getVirtualDigest.test.js +1 -1
- package/src/guessIfSequenceIsDnaAndNotProtein.test.js +1 -1
- package/src/insertSequenceDataAtPosition.test.js +1 -1
- package/src/insertSequenceDataAtPositionOrRange.test.js +1 -1
- package/src/mapAnnotationsToRows.test.js +1 -1
- package/src/tidyUpSequenceData.test.js +1 -1
- package/tidyUpAnnotation.d.ts +1 -1
package/calculateNebTa.d.ts
CHANGED
|
@@ -1,4 +1 @@
|
|
|
1
|
-
export default function calculateNebTa(sequences: any, primerConc: any, { monovalentCationConc, polymerase }?: {
|
|
2
|
-
monovalentCationConc: any;
|
|
3
|
-
polymerase: any;
|
|
4
|
-
}): any;
|
|
1
|
+
export default function calculateNebTa(sequences: any, primerConc: any, { monovalentCationConc, polymerase }?: {}): any;
|
package/calculateTm.d.ts
CHANGED
|
@@ -1,8 +1,2 @@
|
|
|
1
|
-
declare function _default(_sequence: any, { type, A, R, primerConc, monovalentCationConc }?: {
|
|
2
|
-
type: any;
|
|
3
|
-
A: any;
|
|
4
|
-
R: any;
|
|
5
|
-
primerConc: any;
|
|
6
|
-
monovalentCationConc: any;
|
|
7
|
-
}): number;
|
|
1
|
+
declare function _default(_sequence: any, { type, A, R, primerConc, monovalentCationConc }?: {}): number;
|
|
8
2
|
export default _default;
|
package/diffUtils.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export function getDiffFromSeqs(oldData: any, newData: any, { ignoreKeys }?: {
|
|
2
|
-
ignoreKeys?:
|
|
2
|
+
ignoreKeys?: never[] | undefined;
|
|
3
3
|
}): any;
|
|
4
4
|
export function patchSeqWithDiff(oldData: any, diff: any, { ignoreKeys }?: {
|
|
5
|
-
ignoreKeys?:
|
|
5
|
+
ignoreKeys?: never[] | undefined;
|
|
6
6
|
}): any;
|
|
7
7
|
export function reverseSeqDiff(diff: any): any;
|
|
@@ -3,10 +3,6 @@ export const genbankFeatureTypes: {
|
|
|
3
3
|
name: string;
|
|
4
4
|
color: string;
|
|
5
5
|
}[];
|
|
6
|
-
export function getFeatureToColorMap({ includeHidden }?: {
|
|
7
|
-
|
|
8
|
-
}): {};
|
|
9
|
-
export function getFeatureTypes({ includeHidden }?: {
|
|
10
|
-
includeHidden: any;
|
|
11
|
-
}): any[];
|
|
6
|
+
export function getFeatureToColorMap({ includeHidden }?: {}): {};
|
|
7
|
+
export function getFeatureTypes({ includeHidden }?: {}): any[];
|
|
12
8
|
export function getMergedFeatureMap(): any;
|
|
@@ -1,23 +1,8 @@
|
|
|
1
1
|
export default function filterSequenceString(sequenceString?: string, { additionalValidChars, isOligo, name, isProtein, isRna, isMixedRnaAndDna }?: {
|
|
2
2
|
additionalValidChars?: string | undefined;
|
|
3
|
-
isOligo: any;
|
|
4
|
-
name: any;
|
|
5
|
-
isProtein: any;
|
|
6
|
-
isRna: any;
|
|
7
|
-
isMixedRnaAndDna: any;
|
|
8
3
|
}): (string | string[])[];
|
|
9
|
-
export function getAcceptedChars({ isOligo, isProtein, isRna, isMixedRnaAndDna }?: {
|
|
10
|
-
|
|
11
|
-
isProtein: any;
|
|
12
|
-
isRna: any;
|
|
13
|
-
isMixedRnaAndDna: any;
|
|
14
|
-
}): string;
|
|
15
|
-
export function getReplaceChars({ isOligo, isProtein, isRna, isMixedRnaAndDna }?: {
|
|
16
|
-
isOligo: any;
|
|
17
|
-
isProtein: any;
|
|
18
|
-
isRna: any;
|
|
19
|
-
isMixedRnaAndDna: any;
|
|
20
|
-
}): {
|
|
4
|
+
export function getAcceptedChars({ isOligo, isProtein, isRna, isMixedRnaAndDna }?: {}): string;
|
|
5
|
+
export function getReplaceChars({ isOligo, isProtein, isRna, isMixedRnaAndDna }?: {}): {
|
|
21
6
|
t?: undefined;
|
|
22
7
|
} | {
|
|
23
8
|
t: string;
|
|
@@ -1,10 +1,5 @@
|
|
|
1
1
|
export default function generateSequenceData({ isProtein, sequenceLength, numFeatures, numParts, numPrimers, numTranslations }?: {
|
|
2
|
-
isProtein: any;
|
|
3
2
|
sequenceLength?: number | undefined;
|
|
4
|
-
numFeatures: any;
|
|
5
|
-
numParts: any;
|
|
6
|
-
numPrimers: any;
|
|
7
|
-
numTranslations: any;
|
|
8
3
|
}): {
|
|
9
4
|
circular: boolean;
|
|
10
5
|
name: string;
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
export default function getAminoAcidStringFromSequenceString(sequenceString: any, { doNotExcludeAsterisk }?: {
|
|
2
|
-
doNotExcludeAsterisk: any;
|
|
3
|
-
}): string;
|
|
1
|
+
export default function getAminoAcidStringFromSequenceString(sequenceString: any, { doNotExcludeAsterisk }?: {}): string;
|