Skip to content

Commit 5531715

Browse files
docs: updated GA announcement #4521 (#4522)
* docs: updated GA announcement #4521 * docs: updating GA announcement content #4521 Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent ec35712 commit 5531715

File tree

4 files changed

+65
-23
lines changed

4 files changed

+65
-23
lines changed

app/content/anvil-cmg/beta-announcement.mdx

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,4 @@
77

88
# AnVIL Data Explorer Now Generally Available
99

10-
We're excited to announce the general availability of the AnVIL Data Explorer. Access the platform at [https://explore.anvilproject.org](https://explore.anvilproject.org).
11-
12-
## Key Features
13-
14-
The AnVIL Data Explorer streamlines genomic research by enabling faceted searches across both open and managed access datasets hosted in AnVIL. You can now efficiently discover relevant data and build custom cohorts tailored to your specific research needs.
15-
16-
## Seamless Integration
17-
18-
Export your search results directly to Terra for immediate analysis, or download manifests to enable the use of the data in alternative computational environments. This flexibility ensures the Data Explorer fits seamlessly into your existing workflow.
19-
20-
## Getting Started
21-
22-
The user guide for The AnVIL Data Explorer is available at [https://explore.anvilproject.org/guides](https://explore.anvilproject.org/guides) to help you get the most out of it.
23-
24-
## Expanding Dataset Collection
25-
26-
The AnVIL team is continuously indexing additional datasets, ensuring that the available research data will grow over time.
27-
28-
## We Value Your Input
29-
30-
Your feedback drives our improvements. Share your experience and suggestions at [https://help.anvilproject.org](https://help.anvilproject.org) by selecting "AnVIL Data Explorer" and creating a new topic or updating an existing one.
10+
The AnVIL Data Explorer is now generally available. Learn more at the [General Availability Announcement](/ga-announcement).
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Breadcrumbs
2+
breadcrumbs={[
3+
{ path: "/datasets", text: "AnVIL Data Explorer" },
4+
{ path: "", text: "General Availability Announcement" },
5+
]}
6+
/>
7+
8+
# AnVIL Data Explorer Now Generally Available
9+
10+
AnVIL is pleased to announce the General Availability release of the AnVIL Data Explorer for Terra on Google Cloud Platform. The AnVIL Data Explorer is accessible at [https://explore.anvilproject.org](/).
11+
12+
We are actively looking for your feedback! Please provide feedback via [https://help.anvilproject.org](https://help.anvilproject.org). Please select the category “AnVIL Data Explorer” and create an existing or update an existing topic there.
13+
14+
The AnVIL Data Explorer enables faceted searches of open and managed access datasets hosted in AnVIL, making it easier for researchers to find and custom-build cohorts. Documentation for using the AnVIL Data Explorer can be found [here](/guides).
15+
16+
The AnVIL team is actively indexing more datasets, so the available datasets should grow every few weeks.
17+
18+
At the time of this writing, known limitations of the AnVIL Data Explorer are:
19+
20+
- Currently supports Terra on Google Cloud Platform. Support for Terra on Microsoft Azure is coming later this year.
21+
- Incomplete dataset descriptions and other supporting information. This information is limited and should be growing, which will increase the usefulness of the AnVIL Data Explorer.
22+
- Limited support for metadata export. This will evolve over time, but currently, some metadata is not handed off to Terra on GCP. We expect this to improve after the release.
23+
24+
Currently, the General Availability release is targeted for around the middle of 2024. The timing will depend on the feedback and the nature of any issues discovered during this beta period.

pages/ga-announcement/index.tsx

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import { Main } from "@databiosphere/findable-ui/lib/components/Layout/components/ContentLayout/components/Main/main";
2+
import { ContentView } from "@databiosphere/findable-ui/lib/views/ContentView/contentView";
3+
import { GetStaticProps, InferGetStaticPropsType } from "next";
4+
import { MDXRemote } from "next-mdx-remote";
5+
import { Content } from "../../app/components/Layout/components/Content/content";
6+
import { MDX_COMPONENTS } from "../../app/content/common/constants";
7+
import { getContentStaticProps } from "../../app/content/common/contentPages";
8+
import NotFoundPage from "../404";
9+
10+
const slug = ["ga-announcement"];
11+
12+
export const getStaticProps: GetStaticProps = async () => {
13+
return getContentStaticProps(
14+
{ params: { slug } },
15+
"General Availability Announcement"
16+
);
17+
};
18+
19+
const Page = ({
20+
layoutStyle,
21+
mdxSource,
22+
}: InferGetStaticPropsType<typeof getStaticProps>): JSX.Element => {
23+
if (!mdxSource) return <NotFoundPage />;
24+
return (
25+
<ContentView
26+
content={
27+
<Content>
28+
<MDXRemote {...mdxSource} components={MDX_COMPONENTS} />
29+
</Content>
30+
}
31+
layoutStyle={layoutStyle ?? undefined}
32+
/>
33+
);
34+
};
35+
36+
Page.Main = Main;
37+
38+
export default Page;

site-config/anvil-cmg/dev/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ export function makeConfig(
185185
label: "Help & Documentation",
186186
menuItems: [
187187
{
188-
label: "Beta Announcement",
189-
url: "/beta-announcement",
188+
label: "GA Announcement",
189+
url: "/ga-announcement",
190190
},
191191
{
192192
label: "Guides",

0 commit comments

Comments
 (0)