@rcsb/rcsb-saguaro-app 5.0.4 → 5.0.5-development.2

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.
@@ -40,5 +40,7 @@ export declare abstract class RcsbFvAbstractModule implements RcsbFvModuleInterf
40
40
  sequenceTrackFactory?: TrackFactoryInterface<[AlignmentRequestContextType, string]>;
41
41
  }): Promise<void>;
42
42
  protected buildAnnotationsTrack(annotationsRequestContext: AnnotationRequestContext, annotationsFeatures: AnnotationFeatures[], annotationConfigMap?: AnnotationConfigInterface): Promise<void>;
43
+ protected getBoardConfig(): Promise<RcsbFvBoardConfigInterface>;
44
+ protected getRowsConfig(): Promise<Array<RcsbFvRowConfigInterface>>;
43
45
  private buildExternalTracks;
44
46
  }
@@ -1,5 +1,7 @@
1
1
  import { RcsbFvAbstractModule } from "./RcsbFvAbstractModule";
2
+ import { RcsbFvBoardConfigInterface } from "@rcsb/rcsb-saguaro";
2
3
  export declare class RcsbFvGroupAlignment extends RcsbFvAbstractModule {
3
4
  protected protectedBuild(): Promise<void>;
4
5
  protected concatAlignmentAndAnnotationTracks(): void;
6
+ protected getBoardConfig(): Promise<RcsbFvBoardConfigInterface>;
5
7
  }
@@ -1,5 +1,7 @@
1
1
  import { RcsbFvAbstractModule } from "./RcsbFvAbstractModule";
2
+ import { RcsbFvBoardConfigInterface } from "@rcsb/rcsb-saguaro";
2
3
  export declare class RcsbFvGroupAnnotation extends RcsbFvAbstractModule {
3
4
  protectedBuild(): Promise<void>;
5
+ protected getBoardConfig(): Promise<RcsbFvBoardConfigInterface>;
4
6
  protected concatAlignmentAndAnnotationTracks(): void;
5
7
  }
@@ -0,0 +1,8 @@
1
+ import { AlignmentResponse, AnnotationFeatures } from "@rcsb/rcsb-api-tools/build/RcsbGraphQL/Types/Borrego/GqlTypes";
2
+ export declare class GroupGapLessTransformer {
3
+ private readonly gapLessReference;
4
+ private refLength;
5
+ private processAlignments;
6
+ gapLessAlignments(alignments: AlignmentResponse): void;
7
+ gapLessFeatures(annotations: Array<AnnotationFeatures>): void;
8
+ }
@@ -1,2 +1,2 @@
1
1
  import { ExternalTrackBuilderInterface } from "../../RcsbCollectTools/FeatureTools/ExternalTrackBuilderInterface";
2
- export declare function alignmentVariation(): ExternalTrackBuilderInterface;
2
+ export declare function groupExternalTrackBuilder(): ExternalTrackBuilderInterface;
@@ -5,6 +5,7 @@ export declare class Logo<T extends string> {
5
5
  constructor(logo: AlignmentLogo[]);
6
6
  private aaTypes;
7
7
  get(aa: T): number;
8
+ total(): number;
8
9
  forEach(callback: (aa: T, n: number) => void): void;
9
10
  mode(): T;
10
11
  frequency(): {