Skip to content

Commit

Permalink
wc - Replaced Clinical.js by ClinicalAnalysis.js
Browse files Browse the repository at this point in the history
Signed-off-by: gpveronica <[email protected]>
  • Loading branch information
gpveronica committed Feb 2, 2024
1 parent e573b63 commit 0b93a34
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/core/clients/opencga/opencga-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import Admin from "./api/Admin.js";
import Alignment from "./api/Alignment.js";
import Clinical from "./api/Clinical.js";
import ClinicalAnalysis from "./api/ClinicalAnalysis.js";
import Cohort from "./api/Cohort.js";
import DiseasePanel from "./api/DiseasePanel.js";
import Family from "./api/Family.js";
Expand Down Expand Up @@ -188,7 +188,7 @@ export class OpenCGAClient {

clinical() {
if (!this.clients.has("clinical")) {
this.clients.set("clinical", new Clinical(this._config));
this.clients.set("clinical", new ClinicalAnalysis(this._config));
}
return this.clients.get("clinical");
}
Expand Down
4 changes: 2 additions & 2 deletions src/sites/test-app/clients/opencga-client-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

import Admin from "./api-mock/Admin";
import Alignment from "./api-mock/Alignment.js";
import Clinical from "./api-mock/Clinical.js";
import ClinicalAnalysis from "./api-mock/ClinicalAnalysis.js";
import Cohort from "./api-mock/Cohort.js";
import DiseasePanel from "./api-mock/DiseasePanel.js";
import Family from "./api-mock/Family.js";
Expand Down Expand Up @@ -184,7 +184,7 @@ export class OpenCGAClientMock {

clinical() {
if (!this.clients.has("clinical")) {
this.clients.set("clinical", new Clinical(this._config));
this.clients.set("clinical", new ClinicalAnalysis(this._config));
}
return this.clients.get("clinical");
}
Expand Down

0 comments on commit 0b93a34

Please sign in to comment.