-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NCITclinical re-creation & tree mods
- Loading branch information
Showing
6 changed files
with
45 additions
and
50 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,29 @@ | ||
import React from "react" | ||
import { Layout } from "../../components/Layout" | ||
import SubsetsHierarchyLoader from "../../components/SubsetsHierarchyLoader" | ||
|
||
export default function NCITclinical_SubsetsPage() { | ||
return ( | ||
<Layout title="TNM and Grade Subsets" headline="Cancers by TNM and Clinical Grade (NCIT)"> | ||
<div className="content"> | ||
<p> | ||
Where available cancer samples in Progenetix are mapped to with their | ||
standard clinical and histological parameters such as TNM classification | ||
or histological grade. | ||
</p> | ||
<p> | ||
For each of the classes, aggregated date is available by | ||
clicking the code. Additionally, a selection of the corresponding | ||
samples can be initiated by clicking the sample number or selecting | ||
one or more classes through the checkboxes. Sample selection follows | ||
a hierarchical system in which samples | ||
matching the child terms of a selected class are included in the | ||
response. | ||
</p> | ||
</div> | ||
<SubsetsHierarchyLoader collationTypes="NCITtnm" datasetIds="progenetix" /> | ||
<SubsetsHierarchyLoader collationTypes="NCITgrade" datasetIds="progenetix" /> | ||
<SubsetsHierarchyLoader collationTypes="NCITstage" datasetIds="progenetix" /> | ||
</Layout> | ||
) | ||
} |
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,2 @@ | ||
import Page from "../../modules/data-pages/NCITclinical_SubsetsPage" | ||
export default Page |