Skip to content

Installation

Emile Gluck-Thaler edited this page Dec 28, 2022 · 19 revisions

Table of Contents

  1. Main workflow and dependencies
  2. Additional dependencies

Main workflow and dependencies

start by cloning the latest version of this github repository:

git clone https://github.com/egluckthaler/starfish.git
cd starfish/

then use conda to install other dependencies into a new, dedicated environment:

conda install --file meta.yaml

activate the new conda environment anytime you want to use starfish:

conda activate starfish

finally, add the following lines to your $HOME/.bash_profile:

export PATH=$PATH:$HOME/starfish/
export PATH=$PATH:$HOME/starfish/CNEFinder/

starfish comes with a command auto-completion, which can be activated by adding these additional lines to your $HOME/.bash_profile:

if [ -f $HOME/starfish/util/bash-completion.sh ]; then
    source $HOME/starfish/util/bash-completion.sh
fi

Additional dependencies

The R package gggenomes is used in some visualization commands and can be installed by visiting the gggenomes github page

Clone this wiki locally