@@ -182,6 +183,13 @@ export default class GermplasmGenotypeView extends GermplasmBase {
}
this.currentCallSetId = callsetId;
+
+ //Currently for memory usage fetching data visualization is deprecated and so calls aren't retrieved, which results in a null error.
+ //This skips functionality dependent on calls while keeping the code for future implementations o
+ if (!this.genotypeData!.calls!) {
+ this.loading = false;
+ return;
+ }
const callsByCallset: Map> = new Map(Object.entries(this.genotypeData!.calls!));
const callSet = callsByCallset.get(callsetId);