-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from c3g/feat/configurable-assays
feat: configurable set of available assays for nodes
- Loading branch information
Showing
10 changed files
with
86 additions
and
33 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
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,19 @@ | ||
import config from "../config.js"; | ||
|
||
export const ASSAY_RNA_SEQ = "RNA-seq"; | ||
export const ASSAY_ATAC_SEQ = "ATAC-seq"; | ||
export const ASSAY_H3K4ME1 = "H3K4me1"; | ||
export const ASSAY_H3K4ME3 = "H3K4me3"; | ||
export const ASSAY_H3K27AC = "H3K27ac"; | ||
export const ASSAY_H3K27ME3 = "H3K27me3"; | ||
|
||
export const ALL_ASSAYS = [ | ||
ASSAY_RNA_SEQ, | ||
ASSAY_ATAC_SEQ, | ||
ASSAY_H3K4ME1, | ||
ASSAY_H3K4ME3, | ||
ASSAY_H3K27AC, | ||
ASSAY_H3K27ME3, | ||
]; | ||
|
||
export const AVAILABLE_ASSAYS = config.availableAssays ?? ALL_ASSAYS; |
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