Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed descriptions for galaxy, tacc, ucsc, and ncbi #60

Merged
merged 3 commits into from
Sep 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ const CARD_ACTION_LABEL = {
LEARN_MORE: "Learn More",
};
const CARD_TEXT = {
RUN_BATCH_ANALYSIS_WORKFLOWS:
"Run batch analysis workflows and interactive visualizations.",
ABOUT_GALAXY:
"A platform for the analysis of data at any scale using public infrastructure",
ABOUT_NCBI: "A singular source for standardized genomic and functional data",
ABOUT_TACC: "One of the world’s leading academic computing centers",
ABOUT_UCSC:
"A global platform for visualization and interpretation of genomic data",
};

export const ANALYTICS_TOOLS: DXCardProps[] = [
Expand All @@ -22,7 +26,7 @@ export const ANALYTICS_TOOLS: DXCardProps[] = [
height: 40,
src: "/portals/galaxy.png",
},
text: CARD_TEXT.RUN_BATCH_ANALYSIS_WORKFLOWS,
text: CARD_TEXT.ABOUT_GALAXY,
title: "Galaxy",
},
{
Expand All @@ -37,7 +41,7 @@ export const ANALYTICS_TOOLS: DXCardProps[] = [
height: 40,
src: "/portals/ncbi.png",
},
text: CARD_TEXT.RUN_BATCH_ANALYSIS_WORKFLOWS,
text: CARD_TEXT.ABOUT_NCBI,
title: "NCBI Datasets",
},
{
Expand All @@ -52,7 +56,7 @@ export const ANALYTICS_TOOLS: DXCardProps[] = [
height: 40,
src: "/portals/ucsc.png",
},
text: CARD_TEXT.RUN_BATCH_ANALYSIS_WORKFLOWS,
text: CARD_TEXT.ABOUT_UCSC,
title: "UCSC Genome Browser",
},
{
Expand All @@ -67,7 +71,7 @@ export const ANALYTICS_TOOLS: DXCardProps[] = [
height: 40,
src: "/portals/tacc.png",
},
text: CARD_TEXT.RUN_BATCH_ANALYSIS_WORKFLOWS,
text: CARD_TEXT.ABOUT_TACC,
title: "TACC",
},
];
Loading