-
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.
family-view and gene-view settings added #236
- Loading branch information
1 parent
f25481e
commit 26552cf
Showing
3 changed files
with
27 additions
and
3 deletions.
There are no files selected for viewing
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,10 @@ | ||
const opencgaFamilyViewSettings = { | ||
// merge criterium: uses this array as filter for internal 1D array. Same as settings.table.columns in `clinical-review-cases.settings`. | ||
/** | ||
* works either with: | ||
* - `fields` an explicit list of ids. In this case each field in DataForm needs an id. | ||
* - `hiddenFields` a list of fields to exclude | ||
*/ | ||
// GEL settings | ||
hiddenFields: ["pedigree", "creationDate", "description"] | ||
}; |
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,5 +1,17 @@ | ||
const opencgaGeneViewSettings = { | ||
// set to true if server on which IVA is installed is exposed to Internet (genomemaps.org, ensembl.org). | ||
externalLinks: false | ||
// TODO add configuration from conf/tools | ||
// set to true if the server on which IVA is running is exposed to Internet (for genomemaps.org, ensembl.org). | ||
externalLinks: true, | ||
// from conf/tools.js | ||
protein: { | ||
color: { | ||
synonymous_variant: "blue", | ||
coding_sequence_variant: "blue", | ||
missense_variant: "orange", | ||
protein_altering_variant: "orange", | ||
start_lost: "red", | ||
stop_gained: "red", | ||
stop_lost: "red", | ||
stop_retained_variant: "red" | ||
} | ||
} | ||
}; |
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