-
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.
case interpreter browser settings added #236
- Loading branch information
1 parent
e2775bb
commit d120a47
Showing
5 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
Submodule jsorolla
updated
28 files
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,19 @@ | ||
const variantInterpreterBrowserCancerSettings = { | ||
menu: { | ||
// add all filters and let variant-interpreter-browser-cancer handle the visibility based on callers | ||
}, | ||
table: { | ||
// merge criterium: spread operator | ||
toolbar: { | ||
showColumns: true, | ||
showExport: false, | ||
showDownload: true | ||
// columns list 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 | ||
// columns: ["id"] | ||
}, | ||
// merge criterium: uses this array as filter for internal 1D array. | ||
detail: [] | ||
|
||
}; |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
const variantInterpreterSettings = { | ||
tools: [ | ||
{ | ||
id: "select" | ||
}, | ||
{ | ||
id: "qc", | ||
tabs: ["overview", "sampleVariantStats", /*"cancerQCPlots",*/ "somaticVariantStats", "germlineVariantStats", /*"geneCoverage"*/] | ||
}, | ||
/*{ | ||
id: "methods" | ||
},*/ | ||
{ | ||
id: "variant-browser" | ||
}, | ||
/*{ | ||
id: "review" | ||
}, | ||
{ | ||
id: "report" | ||
}*/ | ||
] | ||
// add QC config | ||
}; |
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