Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/TASK-7100' into TASK-7100
Browse files Browse the repository at this point in the history
  • Loading branch information
gpveronica committed Jan 31, 2025
2 parents 51b79d3 + d1b91aa commit 93b45f9
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 39 deletions.
48 changes: 24 additions & 24 deletions src/sites/iva/conf/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,14 +386,14 @@ const SUITE = {
featured: true,
description: "Create, share and execute Jupyter Notebooks with Python.",
},
{
id: "my-analysis",
name: "My Analysis",
icon: "fa-cog",
visibility: "public",
featured: true,
description: "Explore and manage all your exceuted analysis.",
},
// {
// id: "my-analysis",
// name: "My Analysis",
// icon: "fa-cog",
// visibility: "public",
// featured: true,
// description: "Explore and manage all your exceuted analysis.",
// },
{
id: "cohort-browser",
name: "Cohort Manager",
Expand Down Expand Up @@ -479,22 +479,22 @@ const SUITE = {
`,
thumbnail: "interpretation_portal.png",
},
{
id: "clinical-configuration",
name: "Configuration",
// icon: "img/tools/icons/interpretation_portal.svg",
icon: "fa-cog",
visibility: "public",
featured: true,
description: `
<p>Explore and review Clinical Interpretations analysis</p>
<ul>
<li>Filter by gene, consequence, frequency and much more.</li>
<li>Create clinical interpretations and reports.</li>
</ul>
`,
thumbnail: "interpretation_portal.png",
},
// {
// id: "clinical-configuration",
// name: "Configuration",
// // icon: "img/tools/icons/interpretation_portal.svg",
// icon: "fa-cog",
// visibility: "public",
// featured: true,
// description: `
// <p>Explore and review Clinical Interpretations analysis</p>
// <ul>
// <li>Filter by gene, consequence, frequency and much more.</li>
// <li>Create clinical interpretations and reports.</li>
// </ul>
// `,
// thumbnail: "interpretation_portal.png",
// },
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/commons/opencga-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default class OpencgaBrowser extends LitElement {
return html`
<div class="d-flex gap-1 align-items-stretch">
<!-- View buttons -->
<div class="d-flex align-items-center gap-1 border bg-gray-100 rounded-3 p-1">
<div class="d-flex align-items-center border bg-gray-100 rounded-2">
${(this._config.views || []).map(view => html`
<button
class="${`btn ${this.activeView === view.id ? "active bg-primary text-white" : ""}`}"
Expand Down
File renamed without changes.
13 changes: 0 additions & 13 deletions src/webcomponents/job/job-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,9 @@

import {LitElement, html, nothing} from "lit";
import UtilsNew from "../../core/utils-new.js";
import {guardPage} from "../commons/html-utils.js";
import "../commons/opencga-browser.js";
import "../commons/opencb-facet-results.js";
import "../commons/facet-filter.js";
import "./job-timeline.js";
import "./job-grid.js";
import "./job-detail.js";
import "./job-detail-log.js";
Expand Down Expand Up @@ -162,17 +160,6 @@ export default class JobBrowser extends LitElement {
</aggregation-stats>
`,
},
{
id: "visual-browser-tab",
name: "Visual browser",
render: params => html `
<jobs-timeline
.opencgaSession="${params.opencgaSession}"
.active="${params.active}"
.query="${params.executedQuery}">
</jobs-timeline>
`,
},
],
filter: {
sections: [
Expand Down
2 changes: 1 addition & 1 deletion src/webcomponents/variant/variant-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ export default class VariantBrowser extends LitElement {
return html`
<div class="d-flex gap-1 align-items-stretch">
<!-- View buttons -->
<div class="d-flex align-items-center gap-1 border bg-gray-100 rounded-3 p-1">
<div class="d-flex align-items-center border bg-gray-100 rounded-2">
${viewButtons.map(button => html`
<button
class="${`btn ${this.activeView === button.id ? "active bg-primary text-white" : ""}`}"
Expand Down

0 comments on commit 93b45f9

Please sign in to comment.