Skip to content

Commit 7f40064

Browse files
frano-mFran McDade
and
Fran McDade
authored
feat: add t2t description to consortia (#4055) (#4056)
* feat: add t2t description to consortia (#4055) * feat: updated t2t text (#4055) * feat: updated mdx remote with link component (#4055) --------- Co-authored-by: Fran McDade <[email protected]>
1 parent 787ff7d commit 7f40064

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

explorer/app/components/common/MDXMarkdown/mdxMarkdown.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import { Link } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link";
2+
import { MDXComponents } from "mdx/types";
13
import { MDXRemote, MDXRemoteSerializeResult } from "next-mdx-remote";
24
import { ReactNode } from "react";
35

@@ -8,7 +10,10 @@ interface Props {
810
source: MDXSerializeResult;
911
}
1012

11-
const components = {};
13+
const components: MDXComponents = {
14+
a: ({ children, href }): JSX.Element =>
15+
Link({ label: children, url: href ?? "" }),
16+
};
1217

1318
export const MdxMarkdown = ({ fallback, source }: Props): JSX.Element => {
1419
return source ? (
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
The [Telomere-to-Telomere (T2T)](https://sites.google.com/ucsc.edu/t2tworkinggroup/home) consortium is an open, community-based effort to generate accurate and gap-free assemblies of the human genome and the genomes of other species. The initial focus was on de novo assembling the first complete reference human genome known as CHM13.
2+
3+
Leveraging PacBio HiFi sequencing and Oxford Nanopore ultra-long reads, the CHM13v1 reference genome boasts remarkable features. These include an estimated sequence accuracy exceeding QV70, correction of structural errors in the GRCh38 reference genome, and the addition of over 100 Mbp of novel sequence compared to GRCh38.
4+
5+
CHM13v1 unlocks complex regions of the genome for clinical and functional study. Additionally, the T2T-CHRY Workspace utilizes the T2T-CHM13v2.0, which provides the first complete sequence for a human Y chromosome from a separate donor (HG002).
6+
7+
T2T-CHM13v2.0 was also used as a reference genome for investigating short-read variant calling, incorporating data from the 1000 Genomes Project and the Simons Genome Diversity Project. Another effort from the T2T consortium is the T2T-GreatApes Project which employs PacBio HiFi and Oxford Nanopore ultra-long reads, advancing our understanding of great ape genomics. It evaluates the impact of T2T-chrXY assemblies on read alignments and variant calling across 129 individuals from 11 great ape subspecies, providing reference genomes for various ape species.
8+
9+
The 1000 Genomes Project, launched in January 2008, is an international research effort to establish variation profiles across the human population. This open access data set continues to be a valuable resource to geneticists.

0 commit comments

Comments
 (0)