-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
variant-interpreter settings support fixed #236
- Loading branch information
1 parent
c1deb66
commit bad7353
Showing
8 changed files
with
58 additions
and
12 deletions.
There are no files selected for viewing
Submodule jsorolla
updated
22 files
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
const opencgaClinicalAnalysisBrowserSettings = { | ||
menu: { | ||
// merge criterium: it uses this `filters` array as filter for internal one. Each object is merged with spread operator | ||
filters: [ | ||
{ | ||
id: "id" | ||
}, | ||
{ | ||
id: "family" | ||
}, | ||
{ | ||
id: "proband" | ||
}, | ||
{ | ||
id: "sample" | ||
}, | ||
{ | ||
id: "status" | ||
}, | ||
{ | ||
id: "priority" | ||
}, | ||
{ | ||
id: "type" | ||
}, | ||
{ | ||
id: "date" | ||
} | ||
], | ||
// merge criterium: full outer join-like. it adds objects presents in internal array only and in external array only. In case of same id, the external value overwrite the internal. | ||
examples: [ | ||
] | ||
}, | ||
table: { | ||
// merge criterium: spread operator | ||
toolbar: { | ||
showColumns: true, | ||
showExport: false, | ||
showDownload: true | ||
// columns list for the dropdown will be added in grid components based on settings.table.columns | ||
}, | ||
// merge criterium: uses this array as filter for internal 1D/2D array. It handles row/col span | ||
// TODO NOTE this refers to clinical-analysis-grid (same list in review-cases.settings) | ||
columns: ["caseId", "probandId", "familyId", "disorderId", "interpretation", "action"] | ||
}, | ||
// merge criterium: uses this array as filter for internal 1D array. | ||
detail: ["clinical-analysis-view", "json-view"] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
const variantInterpreterQcOverviewSettings = { | ||
// for both cancer and family tabs | ||
// for both cancer and family cases | ||
tabs: ["Summary", /* "VariantStats", "SamtoolsPlots", /* "Alignment",*/ "InferredSex", "MendelianErrors", "Relatedness", /* "AlignmentStats",*/ "GenomicContext"] | ||
} |