-
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.
feat: configurable set of available assays for nodes
- Loading branch information
1 parent
62e0b3e
commit 7a244e4
Showing
6 changed files
with
67 additions
and
8 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,15 @@ | ||
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, | ||
]; |
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