Skip to content
Snippets Groups Projects
Commit b9d49147 authored by Pinar Alper's avatar Pinar Alper
Browse files

Adding initial RDM labcards in Jekyll-GitHub-Pages form

parents
No related branches found
No related tags found
No related merge requests found
mkdir -p public
artefact="latest"
# loop through all the branches
for branch in $(git for-each-ref --format='%(refname:strip=3)' refs/remotes); do
echo $branch;
if [[ $branch == "master" ]]; then
artefact="stable";
elif [[ $branch == "develop" ]]; then
artefact="latest";
else
artefact="unstable";
fi
echo $artefact;
git checkout -f $branch
git reset --hard $branch
# build the website
bundle exec jekyll build --baseurl="labCards/$artefact" -d "public/$artefact"
done
# checkout the current branch
echo $CI_COMMIT_REF_NAME
git checkout -f $CI_COMMIT_REF_NAME
git reset --hard origin/$CI_COMMIT_REF_NAME
# set the auto redirection
cp .ci/.autoRedirect public/index.html
image: ruby:2.5
variables:
JEKYLL_ENV: production
before_script:
- bundle install && bundle update
pages:
stage: deploy
only:
- develop
- master
script:
- bash .ci/deploy.sh
artifacts:
paths:
- public
index.md 0 → 100644
---
layout: default
title: Home
order: 1
---
# Research Data Management
Bioinformatics Core assists Luxembourg Centre for Systems Biomedicine [LCSB](https://www.uni.lu/lcsb) researchers with the organization, management, and curation of research data through its R3 initiative. This page is an index for lab cards that are intended to provide practical guidance in implementing Data Management, Data Protection and IT setup.
## Current LabCards
* [Backup guidance](./internal/backup/)
* [Backup staff computer](./internal/backup/R3labCARD-backup_computer.html)
* [Backup servers](./internal/backup/R3labCARD-backup_services.html)
* [Checksums for data integrity](./internal/checksum/)
* [De-Identification of human-subject data](./internal/de-identification/)
* [Deleting data and sanitising media](./internal/sanitisation/)
* Encrypt [disks](./internal/encryption/disk/) or [files and folders](./internal/encryption/file/)
* [Exchange data with collaborators](./external/exchange-channels/)
* [File naming](./internal/file_naming/)
* [Link HPC to OwnCloud](./internal/misc/)
* [Password management](./internal/passwords/)
* [Registering human-subject data to DAISY](./internal/daisy/)
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment