File manipulation/bioinformatics-type scripts that my colleagues have found useful in sequencing SARS-CoV2 (SC2).
Find a file
2021-04-22 11:07:07 -06:00
.git-crypt Add 1 git-crypt collaborator 2021-03-26 14:17:05 -06:00
.vscode Cleanup READMEs 2021-04-20 12:57:26 -06:00
clearlabs Cleanup Clearlabs README 2021-04-13 13:54:07 -06:00
illumina Add sorting scripts to Illumina README 2021-04-13 13:52:23 -06:00
limsdatapull Cleanup limsdatapull README 2021-04-13 13:55:29 -06:00
ont Cleanup find command 2021-04-22 11:07:07 -06:00
.gitattributes Add auto-updating sample database 2021-03-26 14:25:22 -06:00
.gitignore Create fastq sorting script 2021-04-07 15:04:47 -06:00
.markdownlint.json Cleanup READMEs 2021-04-20 12:57:26 -06:00
LICENSE Initial commit 2021-03-17 21:51:44 -06:00
README.md Cleanup main README 2021-04-13 13:58:00 -06:00

wphl-bioinformatics

Bioinformatics scripts for use at the Wyoming Public Health Laboratory.

These scripts have various purposes, uses, and instructions. The only unifying thing about them is that they were all written for WPHL. Please check the README file in each directory for more detailed instructions.

Encryption

NOTICE: Some files in this repository are encrypted using git-crypt. git-crypt works on a repository-wide basis, meaning that decryption must occur on the entire repository.

Installing git-crypt

Ubuntu, Debian, etc.

sudo apt-get install git-crypt -y

Fedora, CentOS, RHEL, etc.

sudo yum install git-crypt -y

MacOS

Install Homebrew first. Then

brew install git-crypt

Windows

There are no official git-crypt builds for Windows. I repeat, git-crypt does not exist for Windows regardless of what others may tell you. If possible, you may use the Windows Subsystem for Linux, but you cannot use native git-crypt.

Decrypting the repository

Encryption is GPG-based. If your GPG key has been added to the repository (you know if you have access), then run

git clone https://github.com/MillironX/wphl-bioinformatics.git && cd wphl-bioinformatics
git-crypt unlock

The files will now be decrypted and can be usable.

If you need to copy your GPG keys to a new machine to be able to decrypt the files, follow the instructions at https://www.phildev.net/pgp/gpg_moving_keys.html under "Copy Just Your Keys."