Skip to content

Commit

Permalink
undo "radiant-main" merge
Browse files Browse the repository at this point in the history
  • Loading branch information
qu-y committed Feb 3, 2025
1 parent 606d39f commit 4c30b8e
Show file tree
Hide file tree
Showing 21 changed files with 23 additions and 5,365 deletions.
8 changes: 4 additions & 4 deletions configs/vue.config.radiant.js → configs/vue.config.A2FKP.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

let pages = {
index: {
entry: "src/portals/Radiant/views/Index/main.js",
entry: "src/views/A2fIndex/main.js",
template: "public/index.html",
filename: "index.html",
title: "Home",
Expand Down Expand Up @@ -32,14 +32,14 @@ let pages = {
chunks: ["chunk-vendors", "chunk-common", "region"],
},
variant: {
entry: "src/portals/Radiant/views/Variant/main.js",
entry: "src/views/Variant/main.js",
template: "public/index.html",
filename: "variant.html",
title: "Variant Info",
chunks: ["chunk-vendors", "chunk-common", "variant"],
},
gene: {
entry: "src/portals/Radiant/views/Gene/main.js",
entry: "src/views/Gene/main.js",
template: "public/index.html",
filename: "gene.html",
title: "Gene Info",
Expand Down Expand Up @@ -311,7 +311,7 @@ module.exports = {
config.devtool = "cheap-module-source-map";
}
},
outputDir: "portals/Radiant/dist",
outputDir: "portals/A2FKP/dist",
productionSourceMap: false,
pages,
};
5 changes: 2 additions & 3 deletions src/components/GeneAssociationsMasks.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,15 +132,14 @@ export default Vue.component("GeneAssociationsMasks", {
},
//filter associations that only exist in the phenotypeMap
filteredAssociations() {
return this.associations;
/*let assocs = !this.filter
let assocs = !this.filter
? this.associations
: this.associations.filter(this.filter);
return (
assocs.filter((row) => {
return this.phenotypeMap[row.phenotype];
}) || []
);*/
);
},
},
methods: {
Expand Down
7 changes: 1 addition & 6 deletions src/modules/bioIndex.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,6 @@ export default function (index, extend) {
context.commit("clearData");
},
async query(context, { q, limit, limitWhile, append }) {
let query_private = false;
if (typeof(extend) != "undefined" && typeof(extend.query_private) != "undefined"){
query_private = extend.query_private;
}

if (!append) {
context.commit("clearData");
}
Expand Down Expand Up @@ -129,7 +124,7 @@ export default function (index, extend) {
postAlertError(error.detail);
context.commit('setError', error.detail);
},
}, query_private).finally(() => closeAlert(alertID))
}).finally(() => closeAlert(alertID))

// data is loaded
context.commit("setResponse", { data, profile });
Expand Down
259 changes: 0 additions & 259 deletions src/portals/Radiant/components/AllGenoQualityMetricsTabs.vue

This file was deleted.

Loading

0 comments on commit 4c30b8e

Please sign in to comment.