You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An open RNA-Seq data analysis pipeline tutorial with an example of reprocessing data from a recent Zika virus study
Zichen Wang and Avi Ma'ayan
BD2K-LINCS Data Coordination and Integration Center (DCIC)Icahn School of Medicine at Mount Sinai, New York, NY 10029 USA
Publication
Wang Z and Ma'ayan A. An open RNA-Seq data analysis pipeline tutorial with an example of reprocessing data from a recent Zika virus study [version 1; referees: 2 approved]. F1000Research 2016, 5:1574 (doi: 10.12688/f1000research.9110.1)
Browse the notebook
To view the IPython notebook with richer display, click here
Run the RNA-seq pipeline interactively
We have created a Docker image (maayanlab/zika) packaging all the dependencies (command line tools, R and Python packages) for the pipeline, which is publically available on Dockerhub. There are several options to run the Docker image:
Install Docker Toolbox following the instructions here
Pull our Docker image from Dockerhub
$ docker pull maayanlab/zika
Run the Docker image
$ docker run -d -p 80:8888 \
-e "PASSWORD=YourPassword" \
-e "USE_HTTP=1" \
--cpmset-cpus="0-3" \ # number of CPUs assigned for the container
-v /host/path/to/data:/notebook/data \ # mount the host volume to the container
-v /host/path/to/genome:/notebook/genome \
maayanlab/zika
Get the IP of your Docker machine:
$ docker-machine ip
use boot2docker if you are using an earlier version of Docker initiated by boot2docker