-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixes #106, moves platform related constants with out of component us…
…e to their own file
- Loading branch information
Showing
3 changed files
with
18 additions
and
10 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
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,11 @@ | ||
const MICROARRAY_TECHNOLOGY_TYPES = ["ONECOLOR", "TWOCOLOR", "DUALMODE"]; | ||
const RNA_SEQ_TECHNOLOGY_TYPES = ["SEQUENCING"]; | ||
const OTHER_TECHNOLOGY_TYPES = ["GENELIST", "OTHER"]; | ||
const TECHNOLOGY_TYPES = MICROARRAY_TECHNOLOGY_TYPES + RNA_SEQ_TECHNOLOGY_TYPES + OTHER_TECHNOLOGY_TYPES; | ||
const TOP_TECHNOLOGY_TYPES = [ | ||
["RNA_SEQ", "RNA-Seq", RNA_SEQ_TECHNOLOGY_TYPES], | ||
["MICROARRAY", "Microarray", MICROARRAY_TECHNOLOGY_TYPES], | ||
["OTHER", "Other", OTHER_TECHNOLOGY_TYPES]]; | ||
|
||
|
||
export {MICROARRAY_TECHNOLOGY_TYPES, RNA_SEQ_TECHNOLOGY_TYPES, OTHER_TECHNOLOGY_TYPES, TECHNOLOGY_TYPES, TOP_TECHNOLOGY_TYPES} |