Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#!/bin/bash
# Clone PRS-CS repo if not already cloned
if [ ! -d "PRScs" ]; then
git clone https://github.com/getian107/PRScs.git
fi
# Create and activate the conda environment
conda env create -f 01_env/01_prscs_env.yml
echo "Set up successfull: PRS-CS environment ready. Conda env name = prscs-env."