msa-parsers 5.1.1 → 5.2.0

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/dist/types.d.ts CHANGED
@@ -50,17 +50,3 @@ export interface InterProScanResults {
50
50
  export interface InterProScanResponse {
51
51
  results: InterProScanResults[];
52
52
  }
53
- export interface MSAParser {
54
- getMSA(): unknown;
55
- getRow(name: string): string;
56
- getWidth(): number;
57
- getNames(): string[];
58
- getTree(): NodeWithIds;
59
- getHeader(): unknown;
60
- getRowData(name: string): unknown;
61
- getStructures(): Record<string, unknown>;
62
- alignmentNames: string[];
63
- seqConsensus: string | undefined;
64
- secondaryStructureConsensus: string | undefined;
65
- tracks: unknown[];
66
- }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "msa-parsers",
3
- "version": "5.1.1",
3
+ "version": "5.2.0",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {
package/src/types.ts CHANGED
@@ -51,18 +51,3 @@ export interface InterProScanResults {
51
51
  export interface InterProScanResponse {
52
52
  results: InterProScanResults[]
53
53
  }
54
-
55
- export interface MSAParser {
56
- getMSA(): unknown
57
- getRow(name: string): string
58
- getWidth(): number
59
- getNames(): string[]
60
- getTree(): NodeWithIds
61
- getHeader(): unknown
62
- getRowData(name: string): unknown
63
- getStructures(): Record<string, unknown>
64
- alignmentNames: string[]
65
- seqConsensus: string | undefined
66
- secondaryStructureConsensus: string | undefined
67
- tracks: unknown[]
68
- }