├── _layouts ├── default.html ├── page.html ├── post.html └── base.html ├── Gemfile ├── assets ├── img │ ├── favicon.ico │ ├── favicon_orig.ico │ └── fega_favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── Lato │ │ ├── lato-bold.eot │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bold.woff2 │ │ ├── lato-italic.eot │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.ttf │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.ttf │ │ ├── lato-italic.woff2 │ │ ├── lato-regular.woff │ │ ├── lato-regular.woff2 │ │ ├── lato-bolditalic.woff │ │ └── lato-bolditalic.woff2 │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── RobotoSlab │ │ ├── roboto-slab.eot │ │ ├── roboto-slab-v7-bold.eot │ │ ├── roboto-slab-v7-bold.ttf │ │ ├── roboto-slab-v7-bold.woff │ │ ├── roboto-slab-v7-bold.woff2 │ │ ├── roboto-slab-v7-regular.eot │ │ ├── roboto-slab-v7-regular.ttf │ │ ├── roboto-slab-v7-regular.woff │ │ └── roboto-slab-v7-regular.woff2 │ └── fontawesome-webfont.woff2 ├── css │ ├── custom.css │ └── theme_extra.css └── js │ ├── theme.js │ └── modernizr-2.8.3.min.js ├── docs ├── assets │ ├── img │ │ ├── favicon.ico │ │ ├── fega_favicon.ico │ │ └── fega-committee-and-working-groups.jpeg │ └── css │ │ └── custom.css ├── _includes │ └── searchbox.html ├── _config.yml ├── search_data.json ├── topics │ ├── outreach-training │ │ └── index.md │ ├── technical-operational │ │ ├── countries_tech_stack │ │ │ ├── germany_tech_stack.html │ │ │ ├── sweden_tech_stack.html │ │ │ ├── finland_tech_stack.html │ │ │ ├── norway_tech_stack.html │ │ │ ├── portugal_tech_stack.html │ │ │ ├── spain_tech_stack.html │ │ │ ├── component_description.html │ │ │ └── national_nodes_technical_stack.html │ │ └── index.md │ ├── maturity-model │ │ └── index.md │ ├── data-metadata-management │ │ └── index.md │ └── governance-legal │ │ └── index.md ├── search.html ├── _layouts │ └── base.html └── index.md ├── Pipfile ├── Dockerfile ├── _includes ├── searchbox.html ├── ganalytics.html ├── versions.html ├── breadcrumbs.html ├── footer.html ├── nav.html └── toc.html ├── docker-compose.yml ├── mkdocs.yml ├── jekyll-theme-rtd.gemspec ├── _config.yml ├── LICENSE-rtd ├── search_data.json ├── LICENSE-mkdocs ├── LICENSE-jekyll-theme-rtd ├── Vagrantfile ├── .github ├── pull_request_template.md └── ISSUE_TEMPLATE │ ├── request_change.yaml │ └── bug_report.yaml ├── README.md ├── .gitignore ├── CONTRIBUTORS.yaml ├── search.html ├── CONTRIBUTING.md ├── CODE_OF_CONDUCT.md ├── Pipfile.lock └── LICENSE.md /_layouts/default.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: base 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /_layouts/post.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | {{ content }} 6 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | source "https://rubygems.org" 4 | gemspec 5 | -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/img/favicon_orig.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/favicon_orig.ico -------------------------------------------------------------------------------- /assets/img/fega_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/img/fega_favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.woff -------------------------------------------------------------------------------- /docs/assets/img/fega_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/fega_favicon.ico -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-italic.woff2 -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-regular.woff2 -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /assets/fonts/Lato/lato-bolditalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/Lato/lato-bolditalic.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab.eot -------------------------------------------------------------------------------- /assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.eot -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.eot -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff -------------------------------------------------------------------------------- /assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/assets/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/img/fega-committee-and-working-groups.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viklund/FEGA-onboarding/main/docs/assets/img/fega-committee-and-working-groups.jpeg -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- 1 | [[source]] 2 | name = "pypi" 3 | url = "https://pypi.org/simple" 4 | verify_ssl = true 5 | 6 | [dev-packages] 7 | 8 | [packages] 9 | mkdocs = "*" 10 | 11 | [requires] 12 | python_version = "3" 13 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ruby:2.6 2 | 3 | ENV LC_ALL C.UTF-8 4 | ENV LANG en_US.UTF-8 5 | ENV LANGUAGE en_US.UTF-8 6 | 7 | WORKDIR /usr/src/app 8 | 9 | COPY Gemfile jekyll-theme-rtd.gemspec ./ 10 | RUN gem install bundler:2.1.4 && bundle install 11 | 12 | EXPOSE 4000 13 | 14 | -------------------------------------------------------------------------------- /_includes/searchbox.html: -------------------------------------------------------------------------------- 1 |
| # | 10 |Component | 11 |Germany | 12 |
|---|---|---|
| 1 | 17 |URL | 18 |https://www.ghga.de/ | 19 |
| 2 | 22 |Credentials | 23 |24 | |
| 3 | 27 |FEGA Node Encryption key pair | 28 |29 | |
| 4 | 32 |FEGA Node MQ | 33 |34 | |
| 5 | 37 |Submitter Inbox | 38 |39 | |
| 6 | 42 |Ingest Pipeline | 43 |44 | |
| 7 | 47 |Archive storage | 48 |49 | |
| 8 | 52 |Archive File Database | 53 |54 | |
| 9 | 57 |Backup Storage | 58 |59 | |
| 10 | 62 |Main Source Code Repository | 63 |64 | |
| 11 | 67 |Main Programming Language | 68 |69 | |
| 12 | 72 |Deployment Method | 73 |74 | |
| 13 | 77 |Helpdesk Management System | 78 |Zammad | 79 |
| 14 | 82 |Helpdesk Portal Technology | 83 |84 | |
| 15 | 87 |Monitoring Tool | 88 |89 | |
| 16 | 92 |Metadata Submission Method | 93 |94 | |
| 17 | 97 |Download Solution | 98 |99 | |
| 18 | 102 |Data Access Tool | 103 |104 | |
| 19 | 107 |General Contact | 108 |109 | |
| # | 5 |Component | 6 |Sweden | 7 |
|---|---|---|
| 1 | 12 |URL | 13 |https://nbis.se/infrastructure/sensitive-data-archive.html | 14 |
| 2 | 17 |Credentials | 18 |19 | |
| 3 | 22 |FEGA Node Encryption key pair | 23 |24 | |
| 4 | 27 |FEGA Node MQ | 28 |29 | |
| 5 | 32 |Submitter Inbox | 33 |S3 Proxy | 34 |
| 6 | 37 |Ingest Pipeline | 38 |39 | |
| 7 | 42 |Archive storage | 43 |S3 | 44 |
| 8 | 47 |Archive File Database | 48 |49 | |
| 9 | 52 |Backup Storage | 53 |54 | |
| 10 | 57 |Main Source Code Repository | 58 |https://github.com/neicnordic/sda-pipeline | 59 |
| 11 | 62 |Main Programming Language | 63 |Golang | 64 |
| 12 | 67 |Deployment Method | 68 |Kubernetes | 69 |
| 13 | 72 |Helpdesk Management System | 73 |Redmine | 74 |
| 14 | 77 |Helpdesk Portal Technology | 78 |79 | |
| 15 | 82 |Monitoring Tool | 83 |84 | |
| 16 | 87 |Metadata Submission Method | 88 |Central EGA submitter Portal | 89 |
| 17 | 92 |Download Solution | 93 |94 | |
| 18 | 97 |Data Access Tool | 98 |99 | |
| 19 | 102 |General Contact | 103 |104 | |
| # | 5 |Component | 6 |Finland | 7 |
|---|---|---|
| 1 | 12 |URL | 13 |https://research.csc.fi/-/fega | 14 |
| 2 | 17 |Credentials | 18 |19 | |
| 3 | 22 |FEGA Node Encryption key pair | 23 |24 | |
| 4 | 27 |FEGA Node MQ | 28 |29 | |
| 5 | 32 |Submitter Inbox | 33 |SFTP | 34 |
| 6 | 37 |Ingest Pipeline | 38 |39 | |
| 7 | 42 |Archive storage | 43 |POSIX / S3(dev) | 44 |
| 8 | 47 |Archive File Database | 48 |49 | |
| 9 | 52 |Backup Storage | 53 |Tape | 54 |
| 10 | 57 |Main Source Code Repository | 58 |https://github.com/neicnordic/sda-pipeline | 59 |
| 11 | 62 |Main Programming Language | 63 |Golang | 64 |
| 12 | 67 |Deployment Method | 68 |Kubernetes | 69 |
| 13 | 72 |Helpdesk Management System | 73 |RT - request tracker | 74 |
| 14 | 77 |Helpdesk Portal Technology | 78 |79 | |
| 15 | 82 |Monitoring Tool | 83 |84 | |
| 16 | 87 |Metadata Submission Method | 88 |Central EGA submitter Portal / Planning Developement of own Portal | 89 |
| 17 | 92 |Download Solution | 93 |https://docs.csc.fi/data/sensitive-data/fega_application/ | 94 |
| 18 | 97 |Data Access Tool | 98 |https://github.com/CSCfi/rems | 99 |
| 19 | 102 |General Contact | 103 |104 | |
| # | 5 |Component | 6 |Norway | 7 |
|---|---|---|
| 1 | 12 |URL | 13 |https://ega.elixir.no/ | 14 |
| 2 | 17 |Credentials | 18 |19 | |
| 3 | 22 |FEGA Node Encryption key pair | 23 |24 | |
| 4 | 27 |FEGA Node MQ | 28 |29 | |
| 5 | 32 |Submitter Inbox | 33 |REST API | 34 |
| 6 | 37 |Ingest Pipeline | 38 |39 | |
| 7 | 42 |Archive storage | 43 |S3 | 44 |
| 8 | 47 |Archive File Database | 48 |49 | |
| 9 | 52 |Backup Storage | 53 |54 | |
| 10 | 57 |Main Source Code Repository | 58 |https://github.com/neicnordic/sda-pipeline | 59 |
| 11 | 62 |Main Programming Language | 63 |Golang | 64 |
| 12 | 67 |Deployment Method | 68 |Docker Swarm | 69 |
| 13 | 72 |Helpdesk Management System | 73 |RT - request tracker | 74 |
| 14 | 77 |Helpdesk Portal Technology | 78 |79 | |
| 15 | 82 |Monitoring Tool | 83 |84 | |
| 16 | 87 |Metadata Submission Method | 88 |Central EGA submitter Portal | 89 |
| 17 | 92 |Download Solution | 93 |94 | |
| 18 | 97 |Data Access Tool | 98 |https://ega.elixir.no/retrieval.html | 99 |
| 19 | 102 |General Contact | 103 |104 | |
{{ section }}
55 | {%- for nav_item in nav %} 56 | {%- assign path_array = nav_item.dir | split: "/" %} 57 | {%- assign page_section = path_array[1] %} 58 | {%- if page_section == section and nav_item.hide != true and nav_item.nav_exclude != true %} 59 | {%- if nav_item.url == page.url %} 60 | {%- include toc.html html=content sanitize=true h_max=4 item_class="toctree-l%level%" %} 61 | {%- if nav_item.url == page.url %} 62 | {%- assign previous_page = last_loop_page %} 63 | {%- assign set_next_page = true %} 64 | {%- endif %} 65 | {%- else %} 66 || # | 5 |Component | 6 |Portugal | 7 |
|---|---|---|
| 1 | 12 |URL | 13 |14 | |
| 2 | 17 |Credentials | 18 |19 | |
| 3 | 22 |FEGA Node Encryption key pair | 23 |24 | |
| 4 | 27 |FEGA Node MQ | 28 |29 | |
| 5 | 32 |Submitter Inbox | 33 |SFTP | 34 |
| 6 | 37 |Ingest Pipeline | 38 |39 | |
| 7 | 42 |Archive storage | 43 |44 | |
| 8 | 47 |Archive File Database | 48 |49 | |
| 9 | 52 |Backup Storage | 53 |S3 | 54 |
| 10 | 57 |Main Source Code Repository | 58 |59 | |
| 11 | 62 |Main Programming Language | 63 |Python | 64 |
| 12 | 67 |Deployment Method | 68 |Docker-Compose | 69 |
| 13 | 72 |Helpdesk Management System | 73 |74 | |
| 14 | 77 |Helpdesk Portal Technology | 78 |79 | |
| 15 | 82 |Monitoring Tool | 83 |84 | |
| 16 | 87 |Metadata Submission Method | 88 |Central EGA submitter Portal | 89 |
| 17 | 92 |Download Solution | 93 |SFTP | 94 |
| 18 | 97 |Data Access Tool | 98 |99 | |
| 19 | 102 |General Contact | 103 |Jorge Oliveira <cto@biodata.pt> | 104 |
| # | 5 |Component | 6 |Spain | 7 |
|---|---|---|
| 1 | 12 |URL | 13 |https://fega-test.bsc.es/docs/ | 14 |
| 2 | 17 |Credentials | 18 |19 | |
| 3 | 22 |FEGA Node Encryption key pair | 23 |24 | |
| 4 | 27 |FEGA Node MQ | 28 |29 | |
| 5 | 32 |Submitter Inbox | 33 |SFTP | 34 |
| 6 | 37 |Ingest Pipeline | 38 |39 | |
| 7 | 42 |Archive storage | 43 |GPFS | 44 |
| 8 | 47 |Archive File Database | 48 |49 | |
| 9 | 52 |Backup Storage | 53 |54 | |
| 10 | 57 |Main Source Code Repository | 58 |https://github.com/EGA-archive/LocalEGA | 59 |
| 11 | 62 |Main Programming Language | 63 |Python | 64 |
| 12 | 67 |Deployment Method | 68 |Docker-Compose | 69 |
| 13 | 72 |Helpdesk Management System | 73 |RT - request tracker | 74 |
| 14 | 77 |Helpdesk Portal Technology | 78 |79 | |
| 15 | 82 |Monitoring Tool | 83 |84 | |
| 16 | 87 |Metadata Submission Method | 88 |Central EGA submitter Portal | 89 |
| 17 | 92 |Download Solution | 93 |Nextcloud | 94 |
| 18 | 97 |Data Access Tool | 98 |99 | |
| 19 | 102 |General Contact | 103 |https://fega-test.bsc.es/docs/contact.html | 104 |
| # | 12 |Component | 13 |Description | 14 |Required | 15 |Link to | 16 |
|---|---|---|---|---|
| 1 | 21 |URL | 22 |Official website for documentation | 23 |- | 24 |25 | |
| 2 | 28 |Credentials | 29 |For connecting to Central EGA there are 2 types of credentials required: User API for identifying and validating in Submitter Inbox the cEGA accounts cEGA MQ credentials for connecting FEGA Node MQ |
30 | Y | 31 |32 | |
| 3 | 35 |FEGA Node Encryption key pair | 36 |A Crypt4GH key pair generated by the FEGA Node, and the public is shared with the Submitter so that files are sent encrypted for the FEGA Node | 37 |Y | 38 |39 | |
| 4 | 42 |FEGA Node MQ | 43 |RabbitMQ which is connected in shovel and federation mechanism with the cEGA MQ | 44 |Y | 45 |2 | 46 |
| 5 | 49 |Submitter Inbox | 50 |An Inbox solution for the Researcher to submit files to a specific Node (e.g. SFTP, REST API). The Inbox needs to be accessible by a Researcher via an URL. |
51 | Y | 52 |2, 3 | 53 |
| 6 | 56 |Ingest Pipeline | 57 |Means of interfacing with the cEGA so that the required messages are being sent at relevant steps of the submission process. https://localega.readthedocs.io/en/latest/amqp.html | 58 |Y | 59 |4, 7, 8, 9 | 60 |
| 7 | 63 |Archive storage | 64 |Storage solution for storing archived files. e.g. S3, POSIX etc. | 65 |Y | 66 |6 | 67 |
| 8 | 70 |Archive File Database | 71 |Means of storing information about the archived files and their AccessionIDs and dataset IDs mapping to AccessionIDs (file to dataset mapping). Note: other details can be stored in the database e.g. checksums, timestamps, headers of crypt4gh file etc. |
72 | Y | 73 |6 | 74 |
| 9 | 77 |Backup Storage | 78 |Storage solution for storing a backup of the archived files. e.g. S3, POSIX etc. Note: A file needs to be backed up in a different location than the Archive |
79 | Y | 80 |6 | 81 |
| 10 | 84 |Main Source Code Repository | 85 |Where the source code can be found | 86 |N | 87 |88 | |
| 11 | 91 |Main Programming Language | 92 |Main programming language for the technical stack pipeline | 93 |- | 94 |95 | |
| 12 | 98 |Deployment Method | 99 |Means which technology is used to put in production different components | 100 |- | 101 |102 | |
| 13 | 105 |Helpdesk Management System | 106 |Main tool for user/helpdesk communication | 107 |N | 108 |109 | |
| 14 | 112 |Helpdesk Portal Technology | 113 |Federated EGA node helpedesk will provide means of interacting with submitter, registering DPA, establisng DACs and monitoring submissions. | 114 |N | 115 |15 | 116 |
| 15 | 119 |Monitoring Tool | 120 |Means of providing an overview of the status of submissions. Good also for auditing purposes. |
121 | N | 122 |14 | 123 |
| 16 | 126 |Metadata Submission Method | 127 |Means how the researchers will send the metadata to Central EGA through a cEGA submitter portal, node portal or another solution | 128 |Y | 129 |130 | |
| 17 | 133 |Download Solution | 134 |Means for a Requester to access the data once approval has been granted. | 135 |Y | 136 |7, 8, 18 | 137 |
| 18 | 140 |Data Access Tool | 141 |Means of enabling Requesters to Download the archived data. tool for facilitating DACs |
142 | N | 143 |144 | |
| 19 | 147 |General Contact | 148 |Email or website to contact the team deploying the solution | 149 |Y | 150 |151 | |
51 |
52 | ## 2. Implement legal frameworks
53 |
54 | ### FEGA Collaboration Agreement
55 |
56 | Inclusion in the Federated EGA is codified by signing of the **Federated EGA Collaboration Agreement** (CA) between Central EGA (represented by the European Molecular Biology Laboratory and Fundació Centre De Regulació Genòmica) and the Federated EGA node. Nodes are welcome to make a copy of this current version of the CA to start its review with their legal teams and understand the responsibilities of joining FEGA. Nevertheless, this version (the one with a watermark) shall not be signed: the official version needs to be obtained from FEGA prior signing through its official channels.
57 |
58 | ### Data Processing Agreement (DPA)
59 |
60 | As Central EGA is a Data Processor under GDPR definitions, all data submitters are required to agree to and sign the EGA Data Processing Agreement. Federated EGA nodes also acting as Data Processors will require a similar agreement outline the roles and responsibilities of Data Processors, Data Controllers, and Data Requestors.
61 |
62 | ### Data Protection and Impact Analysis (DPIA)
63 |
64 | Coming soon!
65 |
66 | ### Node Operations Guidelines
67 |
68 | The FEGA Node Operations Guidelines document gives an overview of the operational areas which require resources in order to establish and operate a Federated EGA node. The document is based on more than 10 years experience of establishing and operating the EMBL-EBI and CRG Central EGA nodes. It provides a breakdown of the operational areas of responsibility into Helpdesk Services, Technical Operations, Software Development, and IT Infrastructure.
69 |
70 | ## 3. Complete steps to join Federated EGA
71 |
72 | The pathway to becoming a Federated EGA node includes governance/legal steps (red, top-right path) that must be completed:
73 |
74 |