1
1
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" ;
3
6
import { Accordion } from "../../../../../../../common/Accordion/accordion" ;
4
7
import { AccordionSummary } from "../../../../../../../common/Accordion/components/AccordionSummary/accordionSummary" ;
5
8
import { URLS } from "../../../../../../common/constants" ;
6
9
import { Grid } from "./questions.styles" ;
10
+ import { TEXT_BODY_LARGE_500 } from "@databiosphere/findable-ui/lib/theme/common/typography" ;
7
11
8
12
export const Questions = ( ) : JSX . Element => {
9
13
return (
@@ -20,6 +24,7 @@ export const Questions = (): JSX.Element => {
20
24
21
25
22
26
/>
27
+ .
23
28
</ MAccordionDetails >
24
29
</ Accordion >
25
30
< Accordion >
@@ -44,6 +49,59 @@ export const Questions = (): JSX.Element => {
44
49
< DXLink label = "ACCESS-CI" url = { URLS . ACCESS_CONSORTIUM } /> consortium.
45
50
</ MAccordionDetails >
46
51
</ 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 >
47
105
</ Grid >
48
106
) ;
49
107
} ;
0 commit comments