Skip to content

Commit

Permalink
div...
Browse files Browse the repository at this point in the history
  • Loading branch information
mbaudis committed Aug 2, 2024
1 parent d1632b8 commit e0295cb
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/components/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ function Side({ onClick }) {
/>
</a>
<ul className="Layout__side__items">
<MenuInternalLinkItem
href="/subsets/analysispipeline-subsets"
label="CNV Profiles by Analysis Pipeline"
/>
<MenuInternalLinkItem href="/search/" label="Search Samples" />
<MenuInternalLinkItem
href="https://beaconplus.progenetix.org/"
Expand Down
20 changes: 20 additions & 0 deletions src/modules/data-pages/analysispipeline_SubsetsPage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react"
import { Layout } from "../../components/Layout"
import Panel from "../../components/Panel"
import SubsetsLoader from "../../components/SubsetsLoader"

export default function analysispipeline_SubsetsPage() {
return (
<Layout title="Subsets" headline="Analysis Pipelines">
<div className="content">
<p>
This page represents samples with analyses from different pipelines.
</p>
</div>
<Panel heading="Analysis Pipelines">
<SubsetsLoader collationTypes="analysisPipeline" datasetIds="refcnv" />
</Panel>
</Layout>
)
}

2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export default function Index() {
<SubsetHistogram datasetIds={SITE_DEFAULTS.DATASETID} id="DRAGEN-CNV" />
</p>
<p>
The repository contains CNV tracks for many of teh 1000 Genomes samples analyzed
The repository contains CNV tracks for many of the 1000 Genomes samples, analyzed
by different platforms or data pipelines and therefore allows to compare
private analysis data to results from these different call sets, to avoid
interpretation biases from using reference data with a different analysis
Expand Down
2 changes: 2 additions & 0 deletions src/pages/subsets/analysispipeline-subsets.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import Page from "../../modules/data-pages/analysispipeline_SubsetsPage"
export default Page

0 comments on commit e0295cb

Please sign in to comment.