-
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.
* fix umap plots to use visx lib * fix umap plots to use visx lib * refactor umap plots * more fixes * umap plot fixes
- Loading branch information
1 parent
5458e21
commit 5d22ac7
Showing
19 changed files
with
883 additions
and
733 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
|
||
import { gql } from "@apollo/client" | ||
export const RNA_UMAP_QUERY = gql` | ||
query rnaUmapQuery($gene_id: String!) | ||
{ | ||
calderonRnaUmapQuery(gene_id: $gene_id){ | ||
name | ||
donor | ||
stimulation | ||
celltype | ||
class | ||
umap_1 | ||
umap_2 | ||
value | ||
} | ||
} | ||
` | ||
export const EQTL_QUERY = gql` | ||
query iCREeQTLQuery($study: String!, $geneid: String) | ||
{ | ||
icreeQTLQuery(study:$study, geneid:$geneid) { | ||
variant_id | ||
pvalue | ||
qvalue | ||
geneid | ||
pval_nominal | ||
phenotype_id | ||
celltype | ||
study | ||
rsid | ||
pval_beta | ||
} | ||
} | ||
` |
Oops, something went wrong.