Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.76 KB

README_Admin.md

File metadata and controls

68 lines (48 loc) · 1.76 KB

bioinfo-bootcamp-fall-2020

Repo for bioinformatics bootcamp fall 2020

Setting up the lab machines

Here's the protocol for setting up the lab machines:

  1. IMS sets up an Azure lab template
  2. Change the password to something easier to remember...
  3. Start the template and connect via ssh
  4. Install conda (saying 'yes' when prompted):
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
  1. Use conda to install salmon, refgenie, and sra-tools:
conda install -c bioconda -c conda-forge salmon sra-tools refgenie
  1. Pull the hg38 Salmon index
export REFGENIE='genome_config.yaml'
refgenie init -c $REFGENIE
refgenie pull hg38/salmon_partial_sa_index
  1. Download SRA file and convert to fastq
prefetch -O SRR1039521/ SRR1039521 
fasterq-dump -e 14 -p -O SRR1039521/ SRR1039521/SRR1039521/SRR1039521.sra
  1. Align to transcriptome using salmon
salmon quant -l A -1 SRR1039521/SRR1039521.sra_1.fastq -2 SRR1039521/SRR1039521.sra_2.fastq -i hg38/salmon_partial_sa_index/default/ -p 14 -o Salmon.out/SRR1039521
  1. To turn on all the machines before lecture (in powershell):
az account set --subscription research
az vm start --ids $(az vm list --resource-group m2600-workshop-basic-rg --query "[].id" -o tsv)
  1. To export the mahine IP addresses to a csv:
$results = (az network public-ip list --resource-group m2600-workshop-basic-rg --query "[].{name: name, address: ipAddress}" -o json) |ConvertFrom-Json
$results|Export-Csv -Path vmlist.csv -NoTypeInformation
  1. Sign in:

Username: labadmin

Password: 1234Temp1234

  1. To power off the machines
az vm deallocate --ids $(az vm list --resource-group m2600-workshop-basic-rg --query "[].id" -o tsv)