Skip to content

Commit

Permalink
Disable EBI GWAS
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfisher72 committed May 2, 2024
1 parent 68409e5 commit 1d391ee
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
10 changes: 5 additions & 5 deletions immuscreen/src/app/icres/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -228,11 +228,11 @@ export default function Icres() {
</Grid2>
<Grid2 xs={12} lg={12}>
<Tabs aria-label="icres_tabs" value={value} onChange={handleChange}>
<StyledTab label="Genome Browser" />
<StyledTab label="Activity UMAP" />
<StyledTab label="GWAS Associations" />
<StyledTab label="Cell Type Specific Activity" />
<StyledTab label="Activity in Cell Lineage" />
<StyledTab value={0} label="Genome Browser" />
<StyledTab value={1} label="Activity UMAP" />
{/* <StyledTab value={2} label="GWAS Associations" /> */}
<StyledTab value={3} label="Cell Type Specific Activity" />
<StyledTab value={4} label="Activity in Cell Lineage" />
</Tabs>
</Grid2>
</Grid2>
Expand Down
11 changes: 7 additions & 4 deletions immuscreen/src/app/snp/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ const Snp = () => {
{snp && <Typography variant="h4">SNP Details: {snp}{dataSNP && " - " + dataSNP.snpQuery[0].coordinates.chromosome + ":" + dataSNP.snpQuery[0].coordinates.end}</Typography>}
<Tabs aria-label="snps_tabs" value={value} onChange={handleChange}>
<StyledTab label="Nearby iCREs" />
<StyledTab label="eQTLs + GWAS Variants" />
<StyledTab label="eQTLs" />
{/* <StyledTab label="eQTLs + GWAS Variants" /> */}
</Tabs>
</Grid2>
{value === 0 &&
Expand All @@ -168,7 +169,8 @@ const Snp = () => {
</Grid2>
}
{value === 1 &&
<><Grid2 xs={12} lg={12}>
<>
<Grid2 xs={12} lg={12}>
<DataTable
columns={[
{
Expand All @@ -192,7 +194,7 @@ const Snp = () => {
rows={data?.icreeQTLQuery || []}
itemsPerPage={10} />
</Grid2>
<Grid2 xs={12} lg={12}>
{/* <Grid2 xs={12} lg={12}>
<DataTable
columns={[
{
Expand Down Expand Up @@ -240,7 +242,8 @@ const Snp = () => {
rows={ebidata?.ebiAssociationsQuery || []}
sortColumn={3}
itemsPerPage={10} />
</Grid2></>
</Grid2> */}
</>
}
</Grid2>
</main>
Expand Down

0 comments on commit 1d391ee

Please sign in to comment.