Skip to content

Commit 39bab23

Browse files
authored
content: explain 'free' compute at tacc (#237) (#370)
1 parent e625081 commit 39bab23

File tree

2 files changed

+78
-1
lines changed

2 files changed

+78
-1
lines changed

app/components/Home/components/Section/components/SectionHelp/components/Questions/questions.styles.ts

+19
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,23 @@ export const Grid = styled.div`
1111
grid-column: 6 / -1;
1212
grid-template-columns: repeat(7, 1fr);
1313
}
14+
15+
.MuiAccordion-root {
16+
ol {
17+
margin: 0;
18+
padding-left: 24px;
19+
20+
li {
21+
margin: 8px 0;
22+
23+
&:first-of-type {
24+
margin-top: 0;
25+
}
26+
27+
&:last-of-type {
28+
margin-bottom: 0;
29+
}
30+
}
31+
}
32+
}
1433
`;

app/components/Home/components/Section/components/SectionHelp/components/Questions/questions.tsx

+59-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import { Link as DXLink } from "@databiosphere/findable-ui/lib/components/Links/components/Link/link";
2-
import { AccordionDetails as MAccordionDetails } from "@mui/material";
2+
import {
3+
AccordionDetails as MAccordionDetails,
4+
Typography,
5+
} from "@mui/material";
36
import { Accordion } from "../../../../../../../common/Accordion/accordion";
47
import { AccordionSummary } from "../../../../../../../common/Accordion/components/AccordionSummary/accordionSummary";
58
import { URLS } from "../../../../../../common/constants";
69
import { Grid } from "./questions.styles";
10+
import { TEXT_BODY_LARGE_500 } from "@databiosphere/findable-ui/lib/theme/common/typography";
711

812
export const Questions = (): JSX.Element => {
913
return (
@@ -20,6 +24,7 @@ export const Questions = (): JSX.Element => {
2024
2125
url="mailto:[email protected]"
2226
/>
27+
.
2328
</MAccordionDetails>
2429
</Accordion>
2530
<Accordion>
@@ -44,6 +49,59 @@ export const Questions = (): JSX.Element => {
4449
<DXLink label="ACCESS-CI" url={URLS.ACCESS_CONSORTIUM} /> consortium.
4550
</MAccordionDetails>
4651
</Accordion>
52+
<Accordion>
53+
<AccordionSummary>Can I really do analyses for free?</AccordionSummary>
54+
<MAccordionDetails>
55+
<ol>
56+
<li>
57+
<Typography variant={TEXT_BODY_LARGE_500}>
58+
How is this possible?
59+
</Typography>{" "}
60+
Analytical capabilities of BRC-analytics.org are sustained by
61+
Galaxy Project. In turn, the Galaxy is deployed on vast
62+
computational resources provided by the{" "}
63+
<DXLink label="ACCESS-CI" url={URLS.ACCESS_CONSORTIUM} />{" "}
64+
consortium and <DXLink label="TACC" url={URLS.TACC} />. Each user
65+
is provided with 250 Gb of permanent storage and 1Tb of temporary
66+
scratch storage. A variety of computer systems is available
67+
depending on what kind of analysis tool is used. These range from
68+
typical cluster nodes to large memory machines suitable for genome
69+
assembly or GPU-containing nodes.
70+
</li>
71+
<li>
72+
<Typography variant={TEXT_BODY_LARGE_500}>
73+
How long are my datasets stored?
74+
</Typography>{" "}
75+
There is no time limit on data stored within the permanent storage
76+
(250Gb). Scratch storage is limited to 60 days.
77+
</li>
78+
<li>
79+
<Typography variant={TEXT_BODY_LARGE_500}>
80+
Who can see my work?
81+
</Typography>{" "}
82+
You. To be seen by others you data, workflows, or visualizations
83+
need to be explicitly shared or made public.
84+
</li>
85+
<li>
86+
<Typography variant={TEXT_BODY_LARGE_500}>
87+
Can I upload restricted access data?
88+
</Typography>{" "}
89+
BRC-analytics and Galaxy are free, public, internet accessible
90+
resources. Data transfer and data storage are not encrypted. If
91+
there are restrictions on the way your research data can be stored
92+
and used, please consult your local institutional review board or
93+
the project PI before uploading it to any public site, including
94+
this Galaxy server.
95+
</li>
96+
<li>
97+
<Typography variant={TEXT_BODY_LARGE_500}>
98+
What if I mine BitCoin?
99+
</Typography>{" "}
100+
You will banned from using this site forever.
101+
</li>
102+
</ol>
103+
</MAccordionDetails>
104+
</Accordion>
47105
</Grid>
48106
);
49107
};

0 commit comments

Comments
 (0)