@teselagen/sequence-utils 0.1.1
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/DNAComplementMap.d.ts +30 -0
- package/addGapsToSeqReads.d.ts +4 -0
- package/adjustAnnotationsToInsert.d.ts +1 -0
- package/adjustBpsToReplaceOrInsert.d.ts +1 -0
- package/aliasedEnzymesByName.d.ts +2 -0
- package/aminoAcidToDegenerateDnaMap.d.ts +32 -0
- package/aminoAcidToDegenerateRnaMap.d.ts +32 -0
- package/annotateSingleSeq.d.ts +7 -0
- package/annotationTypes.d.ts +3 -0
- package/autoAnnotate.d.ts +8 -0
- package/bioData.d.ts +396 -0
- package/calculateNebTa.d.ts +4 -0
- package/calculateNebTm.d.ts +3 -0
- package/calculatePercentGC.d.ts +1 -0
- package/calculateTm.d.ts +2 -0
- package/computeDigestFragments.d.ts +27 -0
- package/condensePairwiseAlignmentDifferences.d.ts +1 -0
- package/convertAACaretPositionOrRangeToDna.d.ts +1 -0
- package/convertDnaCaretPositionOrRangeToAA.d.ts +1 -0
- package/cutSequenceByRestrictionEnzyme.d.ts +1 -0
- package/defaultEnzymesByName.d.ts +2 -0
- package/degenerateDnaToAminoAcidMap.d.ts +2 -0
- package/degenerateRnaToAminoAcidMap.d.ts +2 -0
- package/deleteSequenceDataAtRange.d.ts +1 -0
- package/diffUtils.d.ts +7 -0
- package/doesEnzymeChopOutsideOfRecognitionSite.d.ts +1 -0
- package/featureTypesAndColors.d.ts +12 -0
- package/filterAminoAcidSequenceString.d.ts +1 -0
- package/filterSequenceString.d.ts +1 -0
- package/findNearestRangeOfSequenceOverlapToPosition.d.ts +2 -0
- package/findOrfsInPlasmid.d.ts +1 -0
- package/findSequenceMatches.d.ts +1 -0
- package/generateAnnotations.d.ts +2 -0
- package/generateSequenceData.d.ts +19 -0
- package/getAllInsertionsInSeqReads.d.ts +1 -0
- package/getAminoAcidDataForEachBaseOfDna.d.ts +20 -0
- package/getAminoAcidFromSequenceTriplet.d.ts +1 -0
- package/getAminoAcidStringFromSequenceString.d.ts +1 -0
- package/getCodonRangeForAASliver.d.ts +4 -0
- package/getComplementAminoAcidStringFromSequenceString.d.ts +1 -0
- package/getComplementSequenceAndAnnotations.d.ts +1 -0
- package/getComplementSequenceString.d.ts +1 -0
- package/getCutsiteType.d.ts +1 -0
- package/getCutsitesFromSequence.d.ts +1 -0
- package/getDegenerateDnaStringFromAAString.d.ts +1 -0
- package/getDegenerateRnaStringFromAAString.d.ts +1 -0
- package/getDigestFragmentsForCutsites.d.ts +1 -0
- package/getDigestFragmentsForRestrictionEnzymes.d.ts +1 -0
- package/getInsertBetweenVals.d.ts +1 -0
- package/getLeftAndRightOfSequenceInRangeGivenPosition.d.ts +4 -0
- package/getMassOfAaString.d.ts +9 -0
- package/getOrfsFromSequence.d.ts +10 -0
- package/getOverlapBetweenTwoSequences.d.ts +9 -0
- package/getPossiblePartsFromSequenceAndEnzymes.d.ts +1 -0
- package/getReverseAminoAcidStringFromSequenceString.d.ts +1 -0
- package/getReverseComplementAminoAcidStringFromSequenceString.d.ts +1 -0
- package/getReverseComplementAnnotation.d.ts +1 -0
- package/getReverseComplementSequenceAndAnnotations.d.ts +1 -0
- package/getReverseComplementSequenceString.d.ts +1 -0
- package/getReverseSequenceString.d.ts +1 -0
- package/getSequenceDataBetweenRange.d.ts +1 -0
- package/getVirtualDigest.d.ts +13 -0
- package/guessIfSequenceIsDnaAndNotProtein.d.ts +1 -0
- package/index.d.ts +85 -0
- package/index.js +53 -0
- package/index.mjs +17927 -0
- package/insertGapsIntoRefSeq.d.ts +1 -0
- package/insertSequenceDataAtPosition.d.ts +2 -0
- package/insertSequenceDataAtPositionOrRange.d.ts +1 -0
- package/isEnzymeType2S.d.ts +1 -0
- package/mapAnnotationsToRows.d.ts +3 -0
- package/package.json +11 -0
- package/prepareCircularViewData.d.ts +1 -0
- package/prepareRowData.d.ts +6 -0
- package/proteinAlphabet.d.ts +255 -0
- package/rotateBpsToPosition.d.ts +1 -0
- package/rotateSequenceDataToPosition.d.ts +1 -0
- package/shiftAnnotationsByLen.d.ts +5 -0
- package/threeLetterSequenceStringToAminoAcidMap.d.ts +898 -0
- package/tidyUpAnnotation.d.ts +11 -0
- package/tidyUpSequenceData.d.ts +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default function tidyUpAnnotation(_annotation: any, { sequenceData, convertAnnotationsFromAAIndices, annotationType, provideNewIdsForAnnotations, doNotProvideIdsForAnnotations, messages, mutative, allowNonStandardGenbankTypes, featureTypes }: {
|
|
2
|
+
sequenceData?: {} | undefined;
|
|
3
|
+
convertAnnotationsFromAAIndices: any;
|
|
4
|
+
annotationType: any;
|
|
5
|
+
provideNewIdsForAnnotations: any;
|
|
6
|
+
doNotProvideIdsForAnnotations: any;
|
|
7
|
+
messages?: any[] | undefined;
|
|
8
|
+
mutative: any;
|
|
9
|
+
allowNonStandardGenbankTypes: any;
|
|
10
|
+
featureTypes: any;
|
|
11
|
+
}): any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function tidyUpSequenceData(pSeqData: any, options?: {}): any;
|