Skip to content

Commit

Permalink
Merge branch 'non-root-install' of github.com:ged-lab/2012-paper-digi…
Browse files Browse the repository at this point in the history
…norm into non-root-install
  • Loading branch information
themangoemoji committed Nov 5, 2014
2 parents a966b79 + caaa0bb commit 92bda18
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions pipeline/pipeline-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,20 +36,24 @@ packages we will need::
texlive-latex-recommended mummer python-pip ipython \
ipython-notebook bioperl ncbi-blast+

echo 'export PATH=${PATH}:${HOME}/bin' >> ${HOME}/.bashrc
source ${HOME}/.bashrc

Now, you'll need to install the version of 'khmer' that the
paper is currently using.::
sudo easy_install -U setuptools
sudo pip install khmer==1.1
pip install --user khmer==1.1

If running on EC2::
sudo mkdir /mnt/bin
sudo chown ubuntu /mnt/bin
ln -s /mnt/bin ${HOME}/

and Velvet. (We need to do this the old fashioned way to enable large k-mer
sizes)::

mkdir ~/bin
echo 'export PATH=${PATH}:${HOME}/bin' >> ${HOME}/.bashrc
source ${HOME}/.bashrc
cd ~/bin
cd ${HOME}/bin/
curl -O http://www.ebi.ac.uk/~zerbino/velvet/velvet_1.2.10.tgz
tar xzf velvet_1.2.10.tgz
cd velvet_1.2.10
Expand All @@ -60,16 +64,10 @@ OK, now we have installed almost all of the software we need, hurrah!

Running the pipeline
--------------------
If running on EC2::
mkdir /mnt/bin
ln -s /mnt/bin ${HOME}/

First, check out the source repository and grab the (...large) initial data
sets
sets::

On EC2, you need read/write permissions in /mnt::
sudo chown ubuntu /mnt
chmod ua+x /mnt/

cd /mnt

This comment has been minimized.

Copy link
@themangoemoji

themangoemoji Jan 23, 2015

Author

(at least on rackspace) this should be /mnt/data after formatting and mounting the drive


Expand Down

0 comments on commit 92bda18

Please sign in to comment.