-
Notifications
You must be signed in to change notification settings - Fork 12
1. Installation
It's coming, I promise... but it's not too hard to follow the below!
I recommend creating a separate environment from which you can exclusively control dependencies for Clinker. My preferred method is to use the Anaconda platform, but feel free to use any other method (or none at all) and just skip to step 2.
Follow the install instructions at continuum, but pretty much just:
- Download Anaconda (you can use wget)
- Navigate to downloaded file
bash Anaconda-latest-Linux-x86_64.sh
conda update conda
Enter the below in order (!important)
conda config --add channels conda-forge
conda config --add channels defaults
conda config --add channels r
conda config --add channels bioconda
Now with Anaconda installed, we can simply just create a new environment with Python 2.7 (I know) enabled.
conda create --name clinker python=2.7 anaconda
You can always remove this by simply entering
conda remove --name clinker --all
source activate clinker
All done! Let's start installing the dependencies.
This is an easy one to start off with! Head over to https://github.com/ssadedin/bpipe and download the latest version of bpipe (currently http://download.bpipe.org/versions/bpipe-0.9.9.4.tar.gz).
You can follow the instructions below, but all you really need to do is extract it somewhere and add the bin
folder to your path.
Simon has created a lot of documentation on bpipe http://docs.bpipe.org, please please please check it out... It's cool!
conda install -c r r-essentials
conda install samtools
conda install -c bioconda star=2.5.3a
Start R and then enter
source("https://bioconductor.org/biocLite.R")
biocLite("Gviz")
Close R, that's it for dependencies.
Now we're ready to download the Clinker source!
- Create a new folder for your Clinker program to reside, navigate there.
git clone https://github.com/Oshlack/Clinker.git
You're all done! Ready to work through some examples?
Have many researchers who want to use Clinker, but only want to use a single installation? Try the following.
- Create a new folder, globally accessible by those who you wish to use Clinker.
- Navigate to this folder and clone a copy of Clinker
git clone https://github.com/Oshlack/Clinker.git
- Most institutions have a method of managing software on their servers (e.g. Modules), whatever method you choose, ensure that all the Clinker dependencies are loaded and the clinker directory is added as an environment variable called $CLINKERDIR (i.e. export CLINKERDIR="/path/to/clinkerdir")
- Whenever somebody wants to run clinker, they can do so with the usual snippet, but with the following bolded change:
bpipe -p out="/path/to/clinker/output" -p caller="/path/to/jaffa_results.csv" -p col="3,4,5,6" -p del="c" -p genome="19" -p print="true" -p fusions="BCR:ABL1" -p pdf_width="9" -p pdf_height="16" -p sizing="1,3,1,2,4,2" -p competitive="true" $CLINKERDIR/workflow/clinker.pipe /path/to/*.fastq.gz
NOTE: There are many ways to manage a server, this may not be the best method for you. Let us know if you come across another solution and we will add it to the wiki.
WARNING: make sure you edit threads, genome_mem and align_mem to reflect the constraints of your system...