@rcsb/rcsb-saguaro-app 4.5.12 → 4.5.13
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/build/dist/RcsbCollectTools/DataCollectors/MultipleEntryPropertyCollector.d.ts +2 -0
- package/build/dist/RcsbCollectTools/DataCollectors/PolymerEntityInstancesCollector.d.ts +2 -0
- package/build/dist/RcsbGroupWeb/RcsbGroupView/RcsbGroupMembers/GroupMemberItem.d.ts +2 -1
- package/build/dist/app.js +1 -1
- package/build/dist/plot.js +1 -1
- package/build/dist/worker.js +1 -1
- package/package.json +2 -1
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { QueryEntriesArgs } from "@rcsb/rcsb-api-tools/build/RcsbGraphQL/Types/Yosemite/GqlTypes";
|
|
2
|
+
import { StructureDeterminationMethodology } from "@rcsb/rcsb-api-tools/build/RcsbDw/Types/DwEnums";
|
|
2
3
|
export interface EntryPropertyIntreface {
|
|
3
4
|
rcsbId: string;
|
|
4
5
|
entryId: string;
|
|
@@ -9,6 +10,7 @@ export interface EntryPropertyIntreface {
|
|
|
9
10
|
entryMolecularWeight: number;
|
|
10
11
|
description: Array<string>;
|
|
11
12
|
entityToInstance: Map<string, Array<string>>;
|
|
13
|
+
structureDeterminationMethodology: StructureDeterminationMethodology;
|
|
12
14
|
}
|
|
13
15
|
export declare class MultipleEntryPropertyCollector {
|
|
14
16
|
private readonly rcsbFvQuery;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CorePolymerEntityInstance, QueryEntryArgs } from "@rcsb/rcsb-api-tools/build/RcsbGraphQL/Types/Yosemite/GqlTypes";
|
|
2
|
+
import { StructureDeterminationMethodology } from "@rcsb/rcsb-api-tools/build/RcsbDw/Types/DwEnums";
|
|
2
3
|
export interface PolymerEntityInstanceInterface {
|
|
3
4
|
rcsbId: string;
|
|
4
5
|
entityId: string;
|
|
@@ -13,6 +14,7 @@ export interface PolymerEntityInstanceInterface {
|
|
|
13
14
|
sequenceLength: number;
|
|
14
15
|
entityMolecularWeight: number;
|
|
15
16
|
entryMolecularWeight: number;
|
|
17
|
+
structureDeterminationMethodology: StructureDeterminationMethodology;
|
|
16
18
|
}
|
|
17
19
|
export declare class PolymerEntityInstancesCollector {
|
|
18
20
|
private readonly rcsbFvQuery;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { GroupProvenanceId } from "@rcsb/rcsb-api-tools/build/RcsbDw/Types/DwEnums";
|
|
2
|
+
import { GroupProvenanceId, StructureDeterminationMethodology } from "@rcsb/rcsb-api-tools/build/RcsbDw/Types/DwEnums";
|
|
3
3
|
import { SearchQuery } from "@rcsb/rcsb-api-tools/build/RcsbSearch/Types/SearchQueryInterface";
|
|
4
4
|
interface GroupMemberItemInterface {
|
|
5
5
|
item: ItemFeaturesInterface;
|
|
@@ -17,6 +17,7 @@ export interface ItemFeaturesInterface {
|
|
|
17
17
|
resolution: number;
|
|
18
18
|
sequenceLength?: number;
|
|
19
19
|
molecularWeight: number;
|
|
20
|
+
structureDeterminationMethodology: StructureDeterminationMethodology;
|
|
20
21
|
}
|
|
21
22
|
export declare class GroupMemberItem extends React.Component<GroupMemberItemInterface, {}> {
|
|
22
23
|
render(): JSX.Element;
|