Skip to content

Commit

Permalink
feat: add t2t description to consortia (#4055) (#4056)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
frano-m and Fran McDade authored Jun 7, 2024
1 parent 787ff7d commit 7f40064
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
7 changes: 6 additions & 1 deletion explorer/app/components/common/MDXMarkdown/mdxMarkdown.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Link } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link";
import { MDXComponents } from "mdx/types";
import { MDXRemote, MDXRemoteSerializeResult } from "next-mdx-remote";
import { ReactNode } from "react";

Expand All @@ -8,7 +10,10 @@ interface Props {
source: MDXSerializeResult;
}

const components = {};
const components: MDXComponents = {
a: ({ children, href }): JSX.Element =>
Link({ label: children, url: href ?? "" }),
};

export const MdxMarkdown = ({ fallback, source }: Props): JSX.Element => {
return source ? (
Expand Down
9 changes: 9 additions & 0 deletions explorer/files/anvil-catalog/files/consortia/t2t.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
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.

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.

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).

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.

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 comments on commit 7f40064

Please sign in to comment.