Skip to content

Commit 9eb230a

Browse files
Fran McDadeFran McDade
authored andcommitted
feat: add about page (#19)
1 parent dcff0d5 commit 9eb230a

File tree

37 files changed

+549
-42
lines changed

37 files changed

+549
-42
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
In coordination with UCSC Genome Browser and NCBI we will begin
2+
work on creating a comprehensive comparative genomics resource by
3+
creating genome alignments and synteny maps within key clades.
4+
This data will provide information on evolutionary dynamics of
5+
pathogens and vectors.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Review all genomic data and associated annotations currently
2+
available from VeuPathDb. During this stage all genome builds will
3+
be validated against data currently available from GenBank and
4+
RefSeq at NCBI. This will ensure that all data is current and is
5+
in sync with official public builds.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
In combination with the Galaxy Training Network (GTN) we will
2+
begin developing tutorials highlighting various aspects of our new
3+
system and explaining how to analyze your data using these tools.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export { default as ComprenhensiveComparitiveGenomics } from "./comprehensiveComparitiveGenomics.mdx";
2+
export { default as GenomicDataReviewAndValidation } from "./genomicDataReviewAndValidation.mdx";
3+
export { default as HowToAnalyzeYourData } from "./howToAnalyzeYourData.mdx";
4+
export { default as LaunchGalaxyInstance } from "./launchGalaxyInstance.mdx";
5+
export { default as LaunchGenomeBrowsers } from "./launchGenomeBrowsers.mdx";
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Launch a Galaxy instance specifically configured for the needs of
2+
eukaryotic pathogen and vector community. Carry-over and update
3+
existing workflows from VeuPathDb Galaxy instance. In combination
4+
with existing Galaxy best practices this will allow us to provide
5+
users with the most up-to-date version of most common analyses
6+
including transcriptomics (bulk and single cell RNA-seq), variant
7+
discovery, assembly, annotation, and many other applications.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
This will involve ingesting data and annotation tracks into UCSC
2+
Genome Browser infrastructure. In coordination with the VeuPathDb
3+
team we will make the best effort to carry over existing JBrowse
4+
tracks and custom annotations.
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
import {
2+
inkLight,
3+
smokeMain,
4+
} from "@databiosphere/findable-ui/lib/styles/common/mixins/colors";
5+
import {
6+
textBodyLarge4002Lines,
7+
textBodyLarge500,
8+
} from "@databiosphere/findable-ui/lib/styles/common/mixins/fonts";
9+
import styled from "@emotion/styled";
10+
import { Section, SectionLayout } from "../../section.styles";
11+
12+
export const StyledSection = styled(Section)`
13+
border-top: 1px solid ${smokeMain};
14+
`;
15+
16+
export const StyledSectionLayout = styled(SectionLayout)`
17+
padding: 96px 16px 98px;
18+
`;
19+
20+
export const Category = styled.div`
21+
margin: 40px 0;
22+
23+
&:first-of-type {
24+
margin-top: 0;
25+
}
26+
27+
&:last-of-type {
28+
margin-bottom: 0;
29+
}
30+
`;
31+
32+
export const CategoryTitle = styled.h4`
33+
${textBodyLarge500};
34+
margin: 4px 0 16px;
35+
`;
36+
37+
export const CategoryText = styled.div`
38+
${textBodyLarge4002Lines};
39+
color: ${inkLight};
40+
margin: 0;
41+
`;
Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
import { Chip } from "@mui/material";
2+
import {
3+
SectionContent,
4+
Subhead,
5+
SubHeadline,
6+
SubheadText,
7+
} from "../../section.styles";
8+
import {
9+
ComprenhensiveComparitiveGenomics,
10+
GenomicDataReviewAndValidation,
11+
HowToAnalyzeYourData,
12+
LaunchGalaxyInstance,
13+
LaunchGenomeBrowsers,
14+
} from "./components/MDX";
15+
import {
16+
Category,
17+
CategoryText,
18+
CategoryTitle,
19+
StyledSection,
20+
StyledSectionLayout,
21+
} from "./sectionRoadmap.styles";
22+
23+
export const SectionRoadmap = (): JSX.Element => {
24+
return (
25+
<StyledSection>
26+
<StyledSectionLayout>
27+
<SubHeadline>
28+
<Subhead>Roadmap</Subhead>
29+
<SubheadText>The high level roadmap for the Fall 24 is:</SubheadText>
30+
</SubHeadline>
31+
<SectionContent>
32+
<Category>
33+
<Chip label="Q1, 2024" />
34+
<CategoryTitle>Genomic Data Review & Validation</CategoryTitle>
35+
<CategoryText>
36+
<GenomicDataReviewAndValidation />
37+
</CategoryText>
38+
</Category>
39+
<Category>
40+
<Chip label="Q2, 2024" />
41+
<CategoryTitle>
42+
Launch genome browsers for all VeuPathDb species
43+
</CategoryTitle>
44+
<CategoryText>
45+
<LaunchGenomeBrowsers />
46+
</CategoryText>
47+
</Category>
48+
<Category>
49+
<Chip label="Q2, 2024" />
50+
<CategoryTitle>Launch a Galaxy instance</CategoryTitle>
51+
<CategoryText>
52+
<LaunchGalaxyInstance />
53+
</CategoryText>
54+
</Category>
55+
<Category>
56+
<Chip label="Q3, 2024" />
57+
<CategoryTitle>
58+
How to analyze your data using these tools
59+
</CategoryTitle>
60+
<CategoryText>
61+
<HowToAnalyzeYourData />
62+
</CategoryText>
63+
</Category>
64+
<Category>
65+
<Chip label="Q3, 2024" />
66+
<CategoryTitle>
67+
Comprehensive comparative genomics resource
68+
</CategoryTitle>
69+
<CategoryText>
70+
<ComprenhensiveComparitiveGenomics />
71+
</CategoryText>
72+
</Category>
73+
</SectionContent>
74+
</StyledSectionLayout>
75+
</StyledSection>
76+
);
77+
};
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
- Dataset explorer providing access to genomic data and annotations for all 785 species currently accessible on VeuPathDb
2+
- Launch of a dedicated Galaxy instance at [https://brc.usegalaxy.org](https://brc.usegalaxy.org) that will provide access to key workflows and will be tightly integrated with the Dataset Explorer
3+
- Launch of a documentation and support site for brc-analytics users and developers
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as Expectations } from "./expectations.mdx";

0 commit comments

Comments
 (0)